00001
00009 #if !defined(DIALOGS_WX_H)
00010 #define DIALOGS_WX_H
00011
00012 class wxGrid;
00013
00014 class BiblDlg : public wxDialog
00015 {
00016 public:
00017 BiblDlg(wxWindow *parent);
00018
00019 void OnBtn1(wxCommandEvent& event);
00020 void OnClose(wxCloseEvent& event);
00021
00022 void OnBrowseRefs(wxCommandEvent& event);
00023
00024 static int dlg_open;
00025 static BiblDlg* active_dlg_ptr;
00026
00027 BiblDB* bibl_db;
00028 wxCheckListBox* refs_list;
00029 wxGrid* refs_grid;
00030
00031 private:
00032 DECLARE_EVENT_TABLE()
00033 };
00034
00035
00036 const int BIBL_BTN_1 = 60101;
00037
00038 const int UPDATE_WOS_IDS = 60111;
00039 const int IMPORT_WOS_FILES = 60112;
00040 const int CLEAR_WOS_MARKED = 60113;
00041 const int WOS_GEN_SEARCH = 60114;
00042 const int WOS_GO_MARKED_LIST = 60115;
00043 const int WOS_LOAD_MARKED_LIST = 60116;
00044 const int WOS_SHOW_MARKED_LIST = 60117;
00045
00046 const int BROWSE_REFS = 60120;
00047 const int DELETE_REFS = 60121;
00048 const int SET_KEYW_REFS = 60122;
00049 const int DELETE_KEYW_REFS = 60123;
00050 const int BROWSE_KEYW = 60124;
00051 const int BROWSE_AUTH = 60125;
00052 const int BROWSE_NOTES = 60126;
00053
00054 const int RADIO_MARKED_REFS = 60130;
00055 const int RADIO_FILTER_REFS = 60131;
00056 const int RADIO_ALL_REFS = 60132;
00057
00058 const int REF_ID_FROM = 60140;
00059 const int REF_ID_TO = 60141;
00060 const int PUB_YEAR_FROM = 60142;
00061 const int PUB_YEAR_TO = 60143;
00062 const int AUTHOR_FLT_TXT = 60144;
00063 const int SELECT_AUTH = 60145;
00064 const int TITLE_WORDS_TXT = 60146;
00065 const int JOURNAL_FLT_TXT = 60147;
00066 const int ISI_ID_FLT_TXT = 60148;
00067 const int IMPORTANCE_FLT_TXT = 60149;
00068 const int REPRINT_FLT_TXT = 60150;
00069 const int KEYWORDS_REFS_FLT_TXT = 60151;
00070
00071 const int REFS_LIST = 60160;
00072
00073
00074
00075 #endif // !defined(DIALOGS_WX_H)