A text-based widget toolkit
Go to file
Markus Gans f8da6b6743 * Makefile.am update
* add a assertion in FMessageBox
2015-05-20 21:27:08 +02:00
autom4te.cache * Makefile.am update 2015-05-20 21:27:08 +02:00
doc * Makefile.am update 2015-05-20 21:27:08 +02:00
m4 initial upload 2015-05-03 21:07:50 +02:00
scripts initial upload 2015-05-03 21:07:50 +02:00
src * Makefile.am update 2015-05-20 21:27:08 +02:00
test * Makefile.am update 2015-05-20 21:27:08 +02:00
AUTHORS initial upload 2015-05-03 21:07:50 +02:00
COPYING initial upload 2015-05-03 21:07:50 +02:00
ChangeLog * Remove never read value from code 2015-05-16 00:14:42 +02:00
LICENSE Initial commit 2015-05-03 20:39:17 +02:00
Makefile.am * Makefile.am update 2015-05-20 21:27:08 +02:00
Makefile.in * Makefile.am update 2015-05-20 21:27:08 +02:00
README.md * Remove never read value from code 2015-05-16 00:14:42 +02:00
aclocal.m4 initial upload 2015-05-03 21:07:50 +02:00
autogen.sh initial upload 2015-05-03 21:07:50 +02:00
build.sh initial upload 2015-05-03 21:07:50 +02:00
config.guess initial upload 2015-05-03 21:07:50 +02:00
config.sub initial upload 2015-05-03 21:07:50 +02:00
configure * Remove never read value from code 2015-05-16 00:14:42 +02:00
configure.ac * Remove never read value from code 2015-05-16 00:14:42 +02:00
depcomp initial upload 2015-05-03 21:07:50 +02:00
install-sh initial upload 2015-05-03 21:07:50 +02:00
ltmain.sh initial upload 2015-05-03 21:07:50 +02:00
missing initial upload 2015-05-03 21:07:50 +02:00

README.md

The Final Cut

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 │
                     │      │    ┌───────────────┐  ┌──┤ FRadioButton ├--┤
                     │1     ├────┤ FToggleButton │◄─┤  └──────────────┘  │
 ┌─────────┐   ┌─────┴───┐  │    └───────────────┘  │  ┌───────────┐1    │
 │ FObject │◄─┬┤ FWidget │◄─┤    ┌──────────────┐   └──┤ FCheckBox ├-----┤
 └─────────┘  │└───┬─┬───┘  ├────┤ FButtonGroup │      └───────────┘     │
              │    │1│1     │    └──────────────┘                        │
   ┌───────┐  │    │ │      │    ┌──────────────┐                        │
   │ FTerm │◄─┘    │ │      ├────┤ FProgressbar │                        │  *┌─────────┐
   └──┬─┬──┘       │ │      │    └──────────────┘                        ├---┤ 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 │
                       └───────┘