Removing obsolete code
[dasher.git] / Src / Gtk2 / dasher.cc
blobea5bf043f9568c649f7a3dba9d0c34d57dd16ecb
1 // /*! \file dasher.cc
2 // \brief The core of the Dasher application
4 // Core routines for the Dasher application
5 // */
7 // // System headers
9 // // #include "../Common/Common.h"
11 // // #include <sys/types.h>
12 // // #include <sys/time.h>
13 // // #include <sys/stat.h>
14 // // #include <stdlib.h>
15 // // #include <libintl.h>
16 // // #include <locale.h>
17 // // #include <string>
18 // // #include <vector>
19 // // #include <stdio.h>
20 // // #include <time.h>
21 // // #include <dirent.h>
22 // // #include <X11/Xlib.h>
23 // // #include <X11/Xatom.h>
24 // // #include "Output.h"
26 // // // C++ STL headers (ideally minimise the use of C++ outside of the control)
28 // // #include <iostream>
30 // // GTK/GDK headers and friends
32 // #include <gtk/gtk.h>
33 // #include <gdk/gdk.h>
34 // #include <gdk/gdkx.h>
36 // #ifdef GNOME_LIBS
37 // #include <libgnomeui/libgnomeui.h>
38 // #include <libgnome/libgnome.h>
39 // #endif
41 // #ifdef WITH_GPE
42 // #include "gpesettings_store.h"
43 // #endif
45 // // Other Dasher components
47 // #include "dasher.h"
48 // #include "edit.h"
49 // #include "fileops.h"
50 // #include "Preferences.h"
52 // #include "Menu.h"
53 // #include "AppSettings.h"
54 // #include "../DasherCore/Parameters.h"
55 // #include "accessibility.h"
56 // #include "dasher_lock_dialogue.h"
58 // // We shouldn't need this - the functions which reference it are obsolete
59 // //#include "../DasherCore/Event.h"
61 // #include "GtkDasherControl.h"
63 // // Pointers to various GTK widgets
65 // // GladeXML *widgets;
68 // ///
69 // /// Initialise the main window and child components
70 // /// This is actually closer to 'initialise application', so name
71 // /// should really be changed to reflect this
72 // ///
74 // void InitialiseMainWindow(int argc, char **argv) {
75 // }