A text-based widget toolkit
Go to file
Markus Gans 71b5b16865 Add the new class FDialogListMenu to switch between dialog menus 2016-07-03 20:08:39 +02:00
doc Add the new class FDialogListMenu to switch between dialog menus 2016-07-03 20:08:39 +02:00
icon Add finalcut icon 2015-08-16 19:46:18 +02:00
logo The Final Cut logo 2016-04-25 21:13:12 +02:00
m4 Some code optimizations 2015-09-22 04:18:20 +02:00
scripts small shell script improvements 2016-04-02 18:35:34 +02:00
src Add the new class FDialogListMenu to switch between dialog menus 2016-07-03 20:08:39 +02:00
test Add the new class FDialogListMenu to switch between dialog menus 2016-07-03 20:08:39 +02:00
.gitignore example program to test video attributes 2015-12-24 02:37:01 +01:00
.travis.yml .travis.yml 2015-11-22 22:26:28 +01:00
AUTHORS upload 2015-05-23 13:35:12 +02:00
COPYING upload 2015-05-23 13:35:12 +02:00
ChangeLog Add the new class FDialogListMenu to switch between dialog menus 2016-07-03 20:08:39 +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 TODO update 2016-02-07 22:02:38 +01:00
README.md The Final Cut logo 2016-04-25 21:13:12 +02:00
aclocal.m4 TODO update 2016-02-07 22:02:38 +01:00
autogen.sh Makefile update 2015-07-09 02:15:12 +02:00
build.sh better profiling 2015-10-15 02:37:02 +02:00
config.guess upload 2015-05-23 13:35:12 +02:00
config.h.in config.h.in 2015-09-15 23:07:24 +02:00
config.sub upload 2015-05-23 13:35:12 +02:00
configure TODO update 2016-02-07 22:02:38 +01:00
configure.ac Version 0.2.0 2015-12-19 22:01:48 +01:00
depcomp upload 2015-05-23 13:35:12 +02:00
finalcut.spec New class FOptiAttr to control video attributes and colors 2016-01-08 01:00:05 +01: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
stamp-h1 readme update 2015-08-30 13:11:49 +02:00

README.md

The Final Cut

Building and code analysis

Travis CI:
     Build Status
Coverity Scan:
     Coverity Scan Status

Installation

> git clone git://github.com/gansm/finalcut.git
> cd finalcut
> ./configure --prefix=/usr
> make
> su -c "make install"

The Final Cut

The Final Cut is a class library and widget toolkit with full mouse support for creating a text-based user interface. The library supports the programmer to develop an application for the text console. It allows the simultaneous handling of multiple windows on the screen.
The C++ class design was inspired by the Qt framework. It provides common controls 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 ├-------:
   └┬─┬─┬──┘       : :      │    └──────────────┘      └─────────┘       :
    :1:1:1         : :      │    ┌────────────┐                          :  *┌─────────┐
    : : └----------: :      ├────┤ FScrollbar │                          ├---┤ FString │
    : :1           : :      │    └────────────┘                          :   └─────────┘
    :┌┴──────────┐ : :      │    ┌───────────┐1                          :
    :│ FOptiAttr │ : :      ├────┤ FTextView ├---------------------------:
    :└───────────┘ : :      │    └───────────┘                           :
    :1             : :      │    ┌──────────┐1     *┌──────────────┐1    :
   ┌┴──────────┐   : :      ├────┤ FListBox ├-------┤ FListBoxItem ├-----:
   │ FOptiMove │   : :      │    └──────────┘       └──────────────┘     :
   └───────────┘   : :      │    ┌────────────┐1   *┌────────────┐1      :
                   : :      ├────┤ FStatusBar ├-----┤ FStatusKey ├-------:
                   : :      │    └────┬───────┘     └────────────┘       :
                   : :      │        1└----------------------------------:
                   : :      │                         ┌─────────────┐1   :
                   : :  ┌───┴─────┐  ┌─────────┐   ┌──┤ FFileDialog ├----:
                   : :  │ FWindow │◄─┤ FDialog │◄──┤  └─────────────┘    :
                   : :  └───┬─────┘  └────┬────┘   │  ┌─────────────┐1   :
                   : :      ▲            1:        └──┤ FMessageBox ├----:
                   : :      │             :           └─────────────┘    :
                   : :      │             └------------------------------:
                   : :      └───────────────┐         ┌──────────┐       :
                   : :                      │     ┌───┤ FMenuBar │       :
                   : :    ┌───────────┐     └─────┤   └──────────┘       :
                   : :    │ FMenuList │◄──────────┤   ┌───────┐          :
                   : :    └────┬──────┘           └───┤ FMenu │          :
                   : :         :                      └───────┘          :
                   : :        1:                    ┌────────────────┐*  :
                   : :         : *┌───────────┐  ┌──┤ FCheckMenuItem ├-┐ :
                   : :         ├--┤ FMenuItem │◄─┤  └────────────────┘ : :
                   : :         :  └───────────┘  │  ┌────────────────┐*: :
                   : :         :                 └──┤ FRadioMenuItem ├-┤ :
                   : :         :                    └────────────────┘ : :
                   : :         └---------------------------------------┘ :
                   : └---------------------------------------------------┘
                   :  *┌────────┐
                   :---┤ FPoint │
                   :   └────────┘
                   :  *┌───────┐
                   └---┤ FRect │
                       └───────┘