00001 #ifndef DELETEALLINDEXES_H 00002 #define DELETEALLINDEXES_H 00003 00004 #include "guicast.h" 00005 #include "mwindow.inc" 00006 #include "preferencesthread.inc" 00007 #include "thread.h" 00008 00009 class DeleteAllIndexes : public BC_GenericButton, public Thread 00010 { 00011 public: 00012 DeleteAllIndexes(MWindow *mwindow, PreferencesWindow *pwindow, int x, int y); 00013 ~DeleteAllIndexes(); 00014 00015 void run(); 00016 int handle_event(); 00017 PreferencesWindow *pwindow; 00018 MWindow *mwindow; 00019 }; 00020 00021 class ConfirmDeleteAllIndexes : public BC_Window 00022 { 00023 public: 00024 ConfirmDeleteAllIndexes(MWindow *mwindow, char *string); 00025 ~ConfirmDeleteAllIndexes(); 00026 00027 int create_objects(); 00028 char *string; 00029 }; 00030 00031 00032 00033 00034 00035 #endif
1.4.4