Work on a config dialog.

This commit is contained in:
Jaime Thomas
2009-02-20 04:23:07 +00:00
parent 43e68e0c3d
commit f7a5dfa6cd
9 changed files with 478 additions and 58 deletions

View File

@@ -9,7 +9,7 @@
#include <Ecore_Data.h>
#include <Ecore_File.h>
#include <Ecore_Evas.h>
#include <Ecore_Str.h>
#include <Ecore_Config.h>
#include <Ecore_X.h>
#include <Eina.h>
#include <Efreet_Mime.h>
@@ -45,8 +45,12 @@ struct _Ecdb_Page
typedef struct _Ecdb_Main Ecdb_Main;
struct _Ecdb_Main
{
char theme_path[PATH_MAX];
char *theme_path;
double scalef;
char *engine;
int fps;
Ecore_Evas *main_win_ee;
Ecore_X_Window xwin;
Eina_List *drives;
/* Drag and drop stuff here */
@@ -59,7 +63,6 @@ struct _Ecdb_Main
* and leave it singular
*/
Ecdb_Page *page;
double scalef;
};
extern Ecdb_Main *em;
@@ -85,6 +88,7 @@ extern int ECDB_FILELIST_SIZE_CHANGED;
#include "ecdb_burn_data_gui.h"
#include "ecdb_filelist_custom.h"
#include "ecdb_about.h"
#include "ecdb_config_dialog.h"
#endif