diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-01-31 06:58:18 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-01-31 06:58:18 +0100 |
commit | d7e4aa16ecb0595ff0248e17fcdcfc09c7616ca0 (patch) | |
tree | 6903f426e8ee97d79c30626050a67d3686ce97cb /src/interface-curses/Makefile.am | |
parent | 406cf5a58b5873f89df710d56883039ff496580e (diff) | |
download | sciteco-d7e4aa16ecb0595ff0248e17fcdcfc09c7616ca0.tar.gz |
CursesInfoPopup: separated the Curses popup widget from the rest of the UI code
* this has been prepared a long time ago
* the popup widget does not in any way depend on the InterfaceCurses
class and could be used elsewhere.
* common and generic Curses drawing functions required by both the
Curses UI and the CursesInfoPopup widget have been factored out
into curses-utils.cpp (namespace Curses)
* this improved the UI-logic separation and helped in making
interface-curses.cpp smaller
Diffstat (limited to 'src/interface-curses/Makefile.am')
-rw-r--r-- | src/interface-curses/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interface-curses/Makefile.am b/src/interface-curses/Makefile.am index a64694c..44e94da 100644 --- a/src/interface-curses/Makefile.am +++ b/src/interface-curses/Makefile.am @@ -6,4 +6,6 @@ AM_CXXFLAGS += -Wno-mismatched-tags endif noinst_LTLIBRARIES = libsciteco-interface.la -libsciteco_interface_la_SOURCES = interface-curses.cpp interface-curses.h +libsciteco_interface_la_SOURCES = interface-curses.cpp interface-curses.h \ + curses-utils.cpp curses-utils.h \ + curses-info-popup.cpp curses-info-popup.h |