mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-04-04 10:07:29 +03:00
gmenu2x.cpp: Re-ordered includes.
Put our own header includes before system includes, to avoid masking missing system includes in our own headers.
This commit is contained in:
parent
f28e4f6d89
commit
cf8ebbca5e
@ -18,6 +18,34 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include "gp2x.h"
|
||||||
|
|
||||||
|
#include "asfont.h"
|
||||||
|
#include "cpu.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "filedialog.h"
|
||||||
|
#include "filelister.h"
|
||||||
|
#include "gmenu2x.h"
|
||||||
|
#include "iconbutton.h"
|
||||||
|
#include "inputdialog.h"
|
||||||
|
#include "linkaction.h"
|
||||||
|
#include "linkapp.h"
|
||||||
|
#include "menu.h"
|
||||||
|
#include "menusettingbool.h"
|
||||||
|
#include "menusettingdir.h"
|
||||||
|
#include "menusettingfile.h"
|
||||||
|
#include "menusettingimage.h"
|
||||||
|
#include "menusettingint.h"
|
||||||
|
#include "menusettingmultistring.h"
|
||||||
|
#include "menusettingrgba.h"
|
||||||
|
#include "menusettingstring.h"
|
||||||
|
#include "messagebox.h"
|
||||||
|
#include "powersaver.h"
|
||||||
|
#include "settingsdialog.h"
|
||||||
|
#include "textdialog.h"
|
||||||
|
#include "wallpaperdialog.h"
|
||||||
|
#include "utilities.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
@ -32,7 +60,6 @@
|
|||||||
#include <sys/statvfs.h>
|
#include <sys/statvfs.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "gp2x.h"
|
|
||||||
#include <sys/fcntl.h> //for battery
|
#include <sys/fcntl.h> //for battery
|
||||||
|
|
||||||
#ifdef PLATFORM_DINGUX
|
#ifdef PLATFORM_DINGUX
|
||||||
@ -42,6 +69,12 @@
|
|||||||
# include <linux/kd.h>
|
# include <linux/kd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef PLATFORM_PANDORA
|
||||||
|
//#include <pnd_container.h>
|
||||||
|
//#include <pnd_conf.h>
|
||||||
|
//#include <pnd_discovery.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
//for browsing the filesystem
|
//for browsing the filesystem
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
@ -51,43 +84,8 @@
|
|||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <linux/soundcard.h>
|
#include <linux/soundcard.h>
|
||||||
|
|
||||||
#include "linkapp.h"
|
|
||||||
#include "linkaction.h"
|
|
||||||
#include "menu.h"
|
|
||||||
#include "asfont.h"
|
|
||||||
#include "surface.h"
|
|
||||||
#include "filedialog.h"
|
|
||||||
#include "gmenu2x.h"
|
|
||||||
#include "filelister.h"
|
|
||||||
#include "cpu.h"
|
|
||||||
#include "utilities.h"
|
|
||||||
#include "powersaver.h"
|
|
||||||
|
|
||||||
#include "iconbutton.h"
|
|
||||||
#include "messagebox.h"
|
|
||||||
#include "inputdialog.h"
|
|
||||||
#include "settingsdialog.h"
|
|
||||||
#include "wallpaperdialog.h"
|
|
||||||
#include "textdialog.h"
|
|
||||||
#include "menusettingint.h"
|
|
||||||
#include "menusettingbool.h"
|
|
||||||
#include "menusettingrgba.h"
|
|
||||||
#include "menusettingstring.h"
|
|
||||||
#include "menusettingmultistring.h"
|
|
||||||
#include "menusettingfile.h"
|
|
||||||
#include "menusettingimage.h"
|
|
||||||
#include "menusettingdir.h"
|
|
||||||
|
|
||||||
#include "debug.h"
|
|
||||||
|
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
|
||||||
#ifdef PLATFORM_PANDORA
|
|
||||||
//#include <pnd_container.h>
|
|
||||||
//#include <pnd_conf.h>
|
|
||||||
//#include <pnd_discovery.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef fastdelegate::FastDelegate0<> MenuAction;
|
typedef fastdelegate::FastDelegate0<> MenuAction;
|
||||||
struct MenuOption {
|
struct MenuOption {
|
||||||
std::string text;
|
std::string text;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user