This commit moves the NxWidgets include directories into the correct position in the apps/ source tree.
Squashed commit of the following: Clean-up some include path problems introduced with the previous set of changes. app/include/graphics, apps/NxWidgets/UnitTests: Update include paths for file in new location. apps/NxWidgets/nxwidgets and nxwm: Update include paths for file in new location. apps/graphics/NxWidgets: Move nxwidgets and nxwm include/ directories to apps/include/graphics
This commit is contained in:
parent
2a19aab1a5
commit
c558fce8ad
@ -574,7 +574,7 @@ WARN_LOGFILE =
|
||||
# directories like "/usr/src/myproject". Separate the files or directories
|
||||
# with spaces.
|
||||
|
||||
INPUT = "../libnxwidgets" "../nxwm"
|
||||
INPUT = "../nxwidgets" "../nxwm"
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
||||
|
@ -59,7 +59,7 @@ Kconfig
|
||||
When copied to that location, it will be used by the NuttX configuration
|
||||
systems to configure settings for NxWidgets and NxWM
|
||||
|
||||
libnxwidgets
|
||||
nxwidgets
|
||||
|
||||
The source code, header files, and build environment for NxWidgets is
|
||||
provided in this directory.
|
||||
@ -67,7 +67,7 @@ libnxwidgets
|
||||
UnitTests
|
||||
|
||||
Provides a collection of unit-level tests for many of the individual
|
||||
widgets provided by libnxwidgets.
|
||||
widgets provided by nxwidgets.
|
||||
|
||||
nxwm
|
||||
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CButton unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cbuttontest.hxx"
|
||||
#include "nxwidgets/cbuttontest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbuttontest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbuttontest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "cbutton.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/cbutton.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CButtonArray unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -47,8 +47,8 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cnxstring.hxx"
|
||||
#include "cbuttonarraytest.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/cbuttonarraytest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbuttonarraytest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbuttonarraytest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "cbuttonarray.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/cbuttonarray.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CCheckBox unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,9 +48,9 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "crlepalettebitmap.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "ccheckboxtest.hxx"
|
||||
#include "nxwidgets/crlepalettebitmap.hxx"
|
||||
#include "nxwidgets/glyphs.hxx"
|
||||
#include "nxwidgets/ccheckboxtest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,11 +47,11 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "ccheckboxtest.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/ccheckboxtest.hxx"
|
||||
#include "nxwidgets/cbitmap.hxx"
|
||||
#include "nxwidgets/glyphs.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "ccheckbox.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/ccheckbox.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CGlyphButton unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,8 +48,8 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cglyphbuttontest.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "nxwidgets/cglyphbuttontest.hxx"
|
||||
#include "nxwidgets/glyphs.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cglyphbuttontest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cglyphbuttontest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,15 +49,15 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "cglyphbutton.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/cglyphbutton.hxx"
|
||||
#include "nxwidgets/cbitmap.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CGlyphSliderHorizontal unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cglyphsliderhorizontaltest.hxx"
|
||||
#include "nxwidgets/cglyphsliderhorizontaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,10 +47,10 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "crlepalettebitmap.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cglyphsliderhorizontaltest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/crlepalettebitmap.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cglyphsliderhorizontaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cglyphsliderhorizontal.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cglyphsliderhorizontal.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CImage unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,9 +48,9 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "crlepalettebitmap.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "cimagetest.hxx"
|
||||
#include "nxwidgets/crlepalettebitmap.hxx"
|
||||
#include "nxwidgets/glyphs.hxx"
|
||||
#include "nxwidgets/cimagetest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,10 +47,10 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "ibitmap.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cimagetest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/ibitmap.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cimagetest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "cimage.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/cimage.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CKeyPad unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -47,8 +47,8 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cnxstring.hxx"
|
||||
#include "ckeypadtest.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/ckeypadtest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,12 +47,12 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "ckeypadtest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "crect.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/ckeypadtest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/crect.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,15 +49,15 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "ctextbox.hxx"
|
||||
#include "ckeypad.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/ctextbox.hxx"
|
||||
#include "nxwidgets/ckeypad.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CLabel unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "clabeltest.hxx"
|
||||
#include "nxwidgets/clabeltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "clabeltest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/clabeltest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "clabel.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/clabel.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CLatchButton unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "clatchbuttontest.hxx"
|
||||
#include "nxwidgets/clatchbuttontest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "clatchbuttontest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/clatchbuttontest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "clatchbutton.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/clatchbutton.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CLatchButtonArray unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -47,8 +47,8 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cnxstring.hxx"
|
||||
#include "clatchbuttonarraytest.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/clatchbuttonarraytest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "clatchbuttonarraytest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/clatchbuttonarraytest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "clatchbuttonarray.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/clatchbuttonarray.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CListBox unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "clistboxtest.hxx"
|
||||
#include "nxwidgets/clistboxtest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "clistboxtest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/clistboxtest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "clistbox.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/clistbox.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CProgressBar unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cprogressbartest.hxx"
|
||||
#include "nxwidgets/cprogressbartest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cprogressbartest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cprogressbartest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cprogressbar.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cprogressbar.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CRadioButton unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,9 +48,9 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "crlepalettebitmap.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "cradiobuttontest.hxx"
|
||||
#include "nxwidgets/crlepalettebitmap.hxx"
|
||||
#include "nxwidgets/glyphs.hxx"
|
||||
#include "nxwidgets/cradiobuttontest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,11 +47,11 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cradiobuttontest.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cradiobuttontest.hxx"
|
||||
#include "nxwidgets/cbitmap.hxx"
|
||||
#include "nxwidgets/glyphs.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,13 +49,13 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cradiobutton.hxx"
|
||||
#include "cradiobuttongroup.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cradiobutton.hxx"
|
||||
#include "nxwidgets/cradiobuttongroup.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CScrollbarHorizontal unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cscrollbarhorizontaltest.hxx"
|
||||
#include "nxwidgets/cscrollbarhorizontaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cscrollbarhorizontaltest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cscrollbarhorizontaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cscrollbarhorizontal.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cscrollbarhorizontal.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CScrollbarVertical unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "cscrollbarverticaltest.hxx"
|
||||
#include "nxwidgets/cscrollbarverticaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cscrollbarverticaltest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cscrollbarverticaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cscrollbarvertical.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cscrollbarvertical.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CSliderHorizontal unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "csliderhorizontaltest.hxx"
|
||||
#include "nxwidgets/csliderhorizontaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -47,9 +47,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "csliderhorizontaltest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/csliderhorizontaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "csliderhorizontal.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/csliderhorizontal.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CSliderVertical unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -48,7 +48,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "csliderverticaltest.hxx"
|
||||
#include "nxwidgets/csliderverticaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -48,9 +48,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "csliderverticaltest.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/csliderverticaltest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,12 +49,12 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cslidervertical.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cslidervertical.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,17 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
endif
|
||||
|
||||
# CTextBox unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "ctextboxtest.hxx"
|
||||
#include "nxwidgets/ctextboxtest.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -48,9 +48,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxfonts.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "ctextboxtest.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/ctextboxtest.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -49,14 +49,14 @@
|
||||
|
||||
#include <nuttx/nx/nx.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cnxserver.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "ctextbox.hxx"
|
||||
#include "nxwidgets/nxconfig.hxx"
|
||||
#include "nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "nxwidgets/ccallback.hxx"
|
||||
#include "nxwidgets/cbgwindow.hxx"
|
||||
#include "nxwidgets/cnxserver.hxx"
|
||||
#include "nxwidgets/cnxfont.hxx"
|
||||
#include "nxwidgets/cnxstring.hxx"
|
||||
#include "nxwidgets/ctextbox.hxx"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
|
@ -35,24 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETS_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)libnxwidgets"
|
||||
NXWIDGETS_INC = "$(NXWIDGETS_DIR)$(DELIM)include"
|
||||
|
||||
NXWM_DIR = "$(APPDIR)$(DELIM)graphics$(DELIM)NxWidgets$(DELIM)nxwm"
|
||||
NXWM_INC = "$(NXWM_DIR)$(DELIM)include"
|
||||
|
||||
ifeq ($(WINTOOL),y)
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CFLAGS += ${shell $(INCDIR) -w "$(CC)" "$(NXWM_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) -w "$(CXX)" "$(NXWM_INC)"}
|
||||
else
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWIDGETS_INC)"}
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" "$(NXWM_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWIDGETS_INC)"}
|
||||
CXXFLAGS += ${shell $(INCDIR) "$(CXX)" "$(NXWM_INC)"}
|
||||
endif
|
||||
|
||||
# NxWM unit test
|
||||
|
||||
ASRCS =
|
||||
|
@ -53,26 +53,26 @@
|
||||
# include "platform/cxxinitialize.h"
|
||||
#endif
|
||||
|
||||
#include "ctaskbar.hxx"
|
||||
#include "cstartwindow.hxx"
|
||||
#include "graphics/nxwm/ctaskbar.hxx"
|
||||
#include "graphics/nxwm/cstartwindow.hxx"
|
||||
|
||||
#ifdef CONFIG_NXWM_NXTERM
|
||||
# include "cnxterm.hxx"
|
||||
# include "graphics/nxwm/cnxterm.hxx"
|
||||
#endif
|
||||
|
||||
#include "chexcalculator.hxx"
|
||||
#include "graphics/nxwm/chexcalculator.hxx"
|
||||
|
||||
#ifdef CONFIG_NXWM_MEDIAPLAYER
|
||||
# include "cmediaplayer.hxx"
|
||||
# include "graphics/nxwm/cmediaplayer.hxx"
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_NXWM_TOUCHSCREEN
|
||||
# include "ctouchscreen.hxx"
|
||||
# include "ccalibration.hxx"
|
||||
# include "graphics/nxwm/ctouchscreen.hxx"
|
||||
# include "graphics/nxwm/ccalibration.hxx"
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_NXWM_KEYBOARD
|
||||
# include "ckeyboard.hxx"
|
||||
# include "graphics/nxwm/ckeyboard.hxx"
|
||||
#endif
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1,5 +1,5 @@
|
||||
############################################################################
|
||||
# apps/graphics/NxWidgets/libnxwidgets/Make.defs
|
||||
# apps/graphics/NxWidgets/nxwidgets/Make.defs
|
||||
# Adds selected applications to apps/ build
|
||||
#
|
||||
# Copyright (C) Gregory Nutt. All rights reserved.
|
||||
@ -35,6 +35,6 @@
|
||||
############################################################################
|
||||
|
||||
ifeq ($(CONFIG_NXWIDGETS),y)
|
||||
CONFIGURED_APPS += graphics/NxWidgets/libnxwidgets
|
||||
CONFIGURED_APPS += graphics/NxWidgets/nxwidgets
|
||||
endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
#################################################################################
|
||||
# appx/graphics/NxWidgets/libnxwidgets/Makefile
|
||||
# appx/graphics/NxWidgets/nxwidgets/Makefile
|
||||
#
|
||||
# Copyright (C) 2012-2014, 2018 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -35,8 +35,6 @@
|
||||
|
||||
-include $(TOPDIR)/Make.defs
|
||||
|
||||
NXWIDGETDIR := ${shell pwd | sed -e 's/ /\\ /g'}
|
||||
|
||||
ASRCS =
|
||||
CSRCS =
|
||||
|
||||
@ -75,9 +73,6 @@ CXXSRCS += glyph_capslock.cxx glyph_radiobuttonon.cxx glyph_windowdepthdown.cxx
|
||||
CXXSRCS += glyph_checkboxmu.cxx glyph_return.cxx glyph_windowdepthup.cxx
|
||||
CXXSRCS += glyph_checkboxoff.cxx glyph_screendepthdown.cxx
|
||||
|
||||
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(NXWIDGETDIR)$(DELIM)include}
|
||||
CXXFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(NXWIDGETDIR)$(DELIM)include}
|
||||
|
||||
VPATH = src
|
||||
|
||||
include $(APPDIR)/Application.mk
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cbgwindow.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cbgwindow.cxx
|
||||
*
|
||||
* Copyright (C) 2012, 2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -42,9 +42,9 @@
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "cbgwindow.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/cbgwindow.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cbitmap.hxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cbitmap.hxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,7 +79,7 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cbutton.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cbutton.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,8 +79,8 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "cbutton.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cbutton.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/include/cbuttonarray.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/include/cbuttonarray.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -44,9 +44,9 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "cbuttonarray.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "cwidgetstyle.hxx"
|
||||
#include "graphics/nxwidgets/cbuttonarray.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetstyle.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/ccallback.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/ccallback.cxx
|
||||
*
|
||||
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -48,8 +48,8 @@
|
||||
# include <nuttx/nx/nxterm.h>
|
||||
#endif
|
||||
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccallback.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/ccallback.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/ccheckbox.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/ccheckbox.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -76,13 +76,13 @@
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "ccheckbox.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "singletons.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "graphics/nxwidgets/nxconfig.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/ccheckbox.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/singletons.hxx"
|
||||
#include "graphics/nxwidgets/glyphs.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/ccyclebutton.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/ccyclebutton.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,10 +79,10 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "ccyclebutton.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "glyphs.hxx"
|
||||
#include "graphics/nxwidgets/ccyclebutton.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/glyphs.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cglyphbutton.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cglyphbutton.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,11 +79,11 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cglyphbutton.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "singletons.hxx"
|
||||
#include "graphics/nxwidgets/nxconfig.hxx"
|
||||
#include "graphics/nxwidgets/cglyphbutton.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/singletons.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cglyphsliderhorizontal.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cglyphsliderhorizontal.cxx
|
||||
*
|
||||
* Copyright (C) 2013 Ken Pettit. All rights reserved.
|
||||
* Author: Ken Pettit <pettitkd@gmail.com>
|
||||
@ -79,12 +79,12 @@
|
||||
#include <cstdint>
|
||||
#include <cstdbool>
|
||||
|
||||
#include "ibitmap.hxx"
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "cglyphsliderhorizontal.hxx"
|
||||
#include "cglyphsliderhorizontalgrip.hxx"
|
||||
#include "cimage.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/ibitmap.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/cglyphsliderhorizontal.hxx"
|
||||
#include "graphics/nxwidgets/cglyphsliderhorizontalgrip.hxx"
|
||||
#include "graphics/nxwidgets/cimage.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cglyphsliderhorizontalgrip.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cglyphsliderhorizontalgrip.cxx
|
||||
*
|
||||
* Copyright (C) 2013 Ken Pettit. All rights reserved.
|
||||
* Author: Ken Pettit <pettitkd@gmail.com>
|
||||
@ -73,8 +73,8 @@
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include "cglyphsliderhorizontalgrip.hxx"
|
||||
#include "ibitmap.hxx"
|
||||
#include "graphics/nxwidgets/cglyphsliderhorizontalgrip.hxx"
|
||||
#include "graphics/nxwidgets/ibitmap.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/cgraphicsport.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/cgraphicsport.cxx
|
||||
*
|
||||
* Copyright (C) 2012, 2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -82,15 +82,15 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
#include <nuttx/video/rgbcolors.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "inxwindow.hxx"
|
||||
#include "cnxstring.hxx"
|
||||
#include "crect.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "cwidgetstyle.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "singletons.hxx"
|
||||
#include "graphics/nxwidgets/nxconfig.hxx"
|
||||
#include "graphics/nxwidgets/inxwindow.hxx"
|
||||
#include "graphics/nxwidgets/cnxstring.hxx"
|
||||
#include "graphics/nxwidgets/crect.hxx"
|
||||
#include "graphics/nxwidgets/cnxfont.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetstyle.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/singletons.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/include/cimage.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/include/cimage.cxx
|
||||
*
|
||||
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,11 +79,11 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "ibitmap.hxx"
|
||||
#include "cbitmap.hxx"
|
||||
#include "cimage.hxx"
|
||||
#include "graphics/nxwidgets/nxconfig.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/ibitmap.hxx"
|
||||
#include "graphics/nxwidgets/cbitmap.hxx"
|
||||
#include "graphics/nxwidgets/cimage.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/ckeypad.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/ckeypad.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -45,9 +45,9 @@
|
||||
#include <nuttx/nx/nx.h>
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "cwidgetstyle.hxx"
|
||||
#include "ckeypad.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetstyle.hxx"
|
||||
#include "graphics/nxwidgets/ckeypad.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/clabel.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/clabel.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,9 +79,9 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxconfig.hxx"
|
||||
#include "clabel.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/nxconfig.hxx"
|
||||
#include "graphics/nxwidgets/clabel.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/clatchbutton.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/clatchbutton.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -79,9 +79,9 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "cstickybutton.hxx"
|
||||
#include "clatchbutton.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cstickybutton.hxx"
|
||||
#include "graphics/nxwidgets/clatchbutton.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/clatchbuttonarray.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/clatchbuttonarray.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -45,9 +45,9 @@
|
||||
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "cstickybuttonarray.hxx"
|
||||
#include "clatchbuttonarray.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cstickybuttonarray.hxx"
|
||||
#include "graphics/nxwidgets/clatchbuttonarray.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/clistbox.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/clistbox.cxx
|
||||
*
|
||||
* Copyright (C) 2012, 2016 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -76,11 +76,11 @@
|
||||
#include <cstdint>
|
||||
#include <cstdbool>
|
||||
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "clistbox.hxx"
|
||||
#include "cgraphicsport.hxx"
|
||||
#include "cnxfont.hxx"
|
||||
#include "singletons.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/clistbox.hxx"
|
||||
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
||||
#include "graphics/nxwidgets/cnxfont.hxx"
|
||||
#include "graphics/nxwidgets/singletons.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* apps/graphics/NxWidgets/libnxwidgets/src/clistboxdataitem.cxx
|
||||
* apps/graphics/NxWidgets/nxwidgets/src/clistboxdataitem.cxx
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -76,8 +76,8 @@
|
||||
#include <cstdint>
|
||||
#include <cstdbool>
|
||||
|
||||
#include "cwidgetcontrol.hxx"
|
||||
#include "clistboxdataitem.hxx"
|
||||
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
|
||||
#include "graphics/nxwidgets/clistboxdataitem.hxx"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-Processor Definitions
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user