A text-based widget toolkit
Go to file
Markus Gans df6636bf60 Remove setVisibleCursor() from the FToggleButton class constructor 2015-08-11 00:11:07 +02:00
doc Makefile.in 2015-08-10 21:50:27 +02:00
m4 upload 2015-05-23 13:35:12 +02:00
scripts font name fixed: -misc-8x16graph-medium-r-normal--17-160-75-75-P-80- 2015-06-21 23:19:15 +02:00
src Remove setVisibleCursor() from the FToggleButton class constructor 2015-08-11 00:11:07 +02:00
test Remove setVisibleCursor() from the FToggleButton class constructor 2015-08-11 00:11:07 +02:00
.gitignore Makefile.in 2015-08-10 21:50:27 +02:00
.travis.yml .travis.yml 2015-08-10 22:15:19 +02:00
AUTHORS upload 2015-05-23 13:35:12 +02:00
COPYING upload 2015-05-23 13:35:12 +02:00
ChangeLog * Bug fix in FDialog (use GlobalPos to move) 2015-08-08 23:40:32 +02:00
LICENSE upload 2015-05-23 13:35:12 +02:00
Makefile.am Makefile update 2015-07-09 02:15:12 +02:00
Makefile.in Makefile.in 2015-08-10 21:50:27 +02:00
README.md .travis.yml 2015-08-10 22:15:19 +02:00
aclocal.m4 Makefile.in 2015-08-10 21:50:27 +02:00
autogen.sh Makefile update 2015-07-09 02:15:12 +02:00
build.sh Makefile.in 2015-08-10 21:50:27 +02:00
config.guess upload 2015-05-23 13:35:12 +02:00
config.sub upload 2015-05-23 13:35:12 +02:00
configure Makefile.in 2015-08-10 21:50:27 +02:00
configure.ac Makefile update 2015-07-09 02:15:12 +02:00
depcomp upload 2015-05-23 13:35:12 +02:00
install-sh upload 2015-05-23 13:35:12 +02:00
ltmain.sh upload 2015-05-23 13:35:12 +02:00
missing upload 2015-05-23 13:35:12 +02:00

README.md

The Final Cut Build Status

The Final Cut is a programming library and widget toolkit that creates a text-based user interface with full mouse support. It supports the controlled handling of multiple simultaneous windows.
The C++ class design is inspired by the Qt framework. It offers common user interface elements like dialog windows, push buttons, check boxes, radio buttons, input lines, list boxes, status bars and so on.

newfont

A new text font for X11 and the Linux console.

Virtual terminal

It uses a virtual terminal to print the character via an update method on the screen.
The virtual windows are an overlying layer to realizing window movements.
The update method transmits only the changes to the virtual terminal or the screen.

 print(...)
printf(...)
  │
  │           ╔═════════════════════════[ vterm ]═════════════════════════╗
  │           ║createVTerm()                                              ║
  │           ║                                 ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐ ║
  │           ║                                                           ║
  │           ║                                 │ restoreVTerm(x,y,w,h) │ ║
  │           ║                                                           ║
  │           ║                                 └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┘ ║
  │           ║                                                           ║
  │   ┌───────╨─────[ vwin ]─────────────┐                                ║
  │   │createArea(area)                  │                                ║
  │   │                                  │                                ║
  │   │                                  │                                ║
  └───┼─────────────►     ──────► updateVTerm(area) ────►                 ║
      │                                  │                                ║
      │                           putArea(x,y,area)                       ║
      │                         ────────────────────►                     ║
      │                           getArea(x,y,area)                       ║
      │                        ◄────────────────────                      ║
      │                                  │                                ║
      │                                  │                                ║
      │                  resizeArea(area)│                                ║
      └───────╥──────────────────────────┘                                ║
              ║                                                           ║
              ║                                                           ║
              ║                                                           ║
              ║   │                                          resizeVTerm()║
              ╚═══▼═══════════════════════════════════════════════════════╝
                  │
                  │    putVTerm()      ┌───────────────┐
                  └───────────────────►│ output_buffer │
                    updateTerminal()   └───────┬───────┘
                                               │
                                               │ flush_out() 
                                               │     +
                                               │ Fputchar(char)
                                               │
                                               ▼
                                       ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
                                       ▌               ▐
                                       ▌    screen     ▐
                                       ▌ ───────────── ▐
                                       ▌ real terminal ▐
                                       ▌               ▐
                                       ▀▀▀▀▀▀▀███▀▀▀▀▀▀▀
                                              ███
                                           ▀▀▀▀▀▀▀▀▀

Class digramm

                                 ┌───────────┐
                            ┌────┤ FKeyEvent │
                            │    └───────────┘
                            │    ┌─────────────┐
                            ├────┤ FMouseEvent │
                            │    └─────────────┘
                            │    ┌─────────────┐
                            ├────┤ FWheelEvent │
                            │    └─────────────┘
                            │    ┌─────────────┐
                            ├────┤ FFocusEvent │
                            │    └─────────────┘
                            │    ┌─────────────┐
                ┌────────┐  ├────┤ FAccelEvent │
                │ FEvent │◄─┤    └─────────────┘
                └────┬───┘  │    ┌──────────────┐
                     │1     ├────┤ FResizeEvent │
                     │      │    └──────────────┘
                     │      │    ┌────────────┐
                     │      ├────┤ FShowEvent │
                     │      │    └────────────┘
                     │      │    ┌────────────┐
                     │      ├────┤ FHideEvent │
                     │      │    └────────────┘
                     │      │    ┌─────────────┐
                     │      ├────┤ FCloseEvent │
                     │      │    └─────────────┘
                     │      │    ┌─────────────┐
                     │      └────┤ FTimerEvent │
                     │           └─────────────┘
                     │
                     │           ┌──────────────┐
                     │      ┌────┤ FApplication │
                     │      │    └──────────────┘
                     │      │    ┌─────────┐1
                     │      ├────┤ FButton ├-----------------------------.
                     │      │    └─────────┘                             │
                     │      │    ┌────────┐1                             │
                     │      ├────┤ FLabel ├------------------------------┤
                     │      │    └────────┘                              │
                     │      │    ┌───────────┐1                          │
                     │      ├────┤ FLineEdit ├---------------------------┤
                     │      │    └───────────┘                           │
                     │      │    ┌──────────────┐      ┌──────────────┐1 │
                     │1     ├────┤ FButtonGroup │   ┌──┤ FRadioButton ├--┤
 ┌─────────┐   ┌─────┴───┐  │    └──────────────┘   │  └──────────────┘  │
 │ FObject │◄─┬┤ FWidget │◄─┤    ┌───────────────┐  │  ┌───────────┐1    │
 └─────────┘  │└───┬─┬───┘  ├────┤ FToggleButton │◄─┼──┤ FCheckBox ├-----┤
              │    │1│1     │    └───────────────┘  │  └───────────┘     │
   ┌───────┐  │    │ │      │    ┌──────────────┐   │  ┌─────────┐1      │
   │ FTerm │◄─┘    │ │      ├────┤ FProgressbar │   └──┤ FSwitch ├-------┤  *┌─────────┐
   └──┬─┬──┘       │ │      │    └──────────────┘      └─────────┘       ├---┤ FString │
      │1│1         │ │      │    ┌────────────┐                          │   └─────────┘
      │ └----------┤ │      ├────┤ FScrollbar │                          │
      │*           │ │      │    └────────────┘                          │
 ┌────┴──────┐     │ │      │    ┌───────────┐1                          │
 │ FOptiMove │     │ │      ├────┤ FTextView ├---------------------------┤
 └───────────┘     │ │      │    └───────────┘                           │
                   │ │      │    ┌──────────┐1     *┌──────────────┐1    │
                   │ │      ├────┤ FListBox ├-------┤ FListBoxItem ├-----┤
                   │ │      │    └──────────┘       └──────────────┘     │
                   │ │      │    ┌────────────┐1   *┌────────────┐1      │
                   │ │      ├────┤ FStatusBar ├-----┤ FStatusKey ├-------┤
                   │ │      │    └────┬───────┘     └────────────┘       │
                   │ │      │        1└----------------------------------┤
                   │ │      │                         ┌─────────────┐1   │
                   │ │  ┌───┴─────┐  ┌─────────┐   ┌──┤ FFileDialog ├----┤
                   │ │  │ FWindow │◄─┤ FDialog │◄──┤  └─────────────┘    │
                   │ │  └─────────┘  └────┬────┘   │  ┌─────────────┐1   │
                   │ │                    │        └──┤ FMessageBox ├----┤
                   │ │                    │           └─────────────┘    │
                   │ │                   1└------------------------------┤
                   │ │                                                   │
                   │ └---------------------------------------------------'
                   │  *┌────────┐
                   ├---┤ FPoint │
                   │   └────────┘
                   │  *┌───────┐
                   └---┤ FRect │
                       └───────┘