A text-based widget toolkit
Go to file
Markus Gans 1d940dda14 upload 2015-05-23 13:35:12 +02:00
doc upload 2015-05-23 13:35:12 +02:00
m4 upload 2015-05-23 13:35:12 +02:00
scripts upload 2015-05-23 13:35:12 +02:00
src upload 2015-05-23 13:35:12 +02:00
test upload 2015-05-23 13:35:12 +02:00
.gitignore add .gitignore 2015-05-23 13:30:22 +02:00
AUTHORS upload 2015-05-23 13:35:12 +02:00
COPYING upload 2015-05-23 13:35:12 +02:00
ChangeLog upload 2015-05-23 13:35:12 +02:00
LICENSE upload 2015-05-23 13:35:12 +02:00
Makefile.am upload 2015-05-23 13:35:12 +02:00
Makefile.in upload 2015-05-23 13:35:12 +02:00
README.md upload 2015-05-23 13:35:12 +02:00
aclocal.m4 upload 2015-05-23 13:35:12 +02:00
autogen.sh upload 2015-05-23 13:35:12 +02:00
build.sh upload 2015-05-23 13:35:12 +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 upload 2015-05-23 13:35:12 +02:00
configure.ac upload 2015-05-23 13:35: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

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 │
                       └───────┘