author | cniehaus <cniehaus> | 2003-03-23 16:05:26 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-03-23 16:05:26 (UTC) |
commit | d2a2f5ee260e80a166b070872cefdd35e0b0b3cd (patch) (unidiff) | |
tree | 37b422856b9be9586ee7882739d6fb7c11153a34 | |
parent | 9c539b9626f0a3ffca47e9b1247cb727539b46c6 (diff) | |
download | opie-d2a2f5ee260e80a166b070872cefdd35e0b0b3cd.zip opie-d2a2f5ee260e80a166b070872cefdd35e0b0b3cd.tar.gz opie-d2a2f5ee260e80a166b070872cefdd35e0b0b3cd.tar.bz2 |
remove the aboutbox
-rw-r--r-- | noncore/apps/odict/odict.cpp | 5 | ||||
-rw-r--r-- | noncore/apps/odict/odict.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index 78c3f90..c4114f7 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp | |||
@@ -72,53 +72,48 @@ void ODict::loadConfig() | |||
72 | regexp = cfg.readEntry( "regexp" ).toInt(); | 72 | regexp = cfg.readEntry( "regexp" ).toInt(); |
73 | completewords = cfg.readEntry( "completewords" ).toInt(); | 73 | completewords = cfg.readEntry( "completewords" ).toInt(); |
74 | 74 | ||
75 | QStringList groupListCfg = cfg.groupList().grep( "Method_" ); | 75 | QStringList groupListCfg = cfg.groupList().grep( "Method_" ); |
76 | query_co->clear(); | 76 | query_co->clear(); |
77 | for ( QStringList::Iterator it = groupListCfg.begin() ; it != groupListCfg.end() ; ++it ) | 77 | for ( QStringList::Iterator it = groupListCfg.begin() ; it != groupListCfg.end() ; ++it ) |
78 | { | 78 | { |
79 | cfg.setGroup( *it ); | 79 | cfg.setGroup( *it ); |
80 | query_co->insertItem( cfg.readEntry( "Name" ) ); | 80 | query_co->insertItem( cfg.readEntry( "Name" ) ); |
81 | } | 81 | } |
82 | slotMethodChanged(1 ); //FIXME: this line should not contain a integer | 82 | slotMethodChanged(1 ); //FIXME: this line should not contain a integer |
83 | } | 83 | } |
84 | 84 | ||
85 | 85 | ||
86 | void ODict::saveConfig() | 86 | void ODict::saveConfig() |
87 | { | 87 | { |
88 | Config cfg ( "odict" ); | 88 | Config cfg ( "odict" ); |
89 | cfg.setGroup( "generalsettings" ); | 89 | cfg.setGroup( "generalsettings" ); |
90 | cfg.writeEntry( "errtol" , errorTol ); | 90 | cfg.writeEntry( "errtol" , errorTol ); |
91 | cfg.writeEntry( "casesens" , casesens ); | 91 | cfg.writeEntry( "casesens" , casesens ); |
92 | cfg.writeEntry( "regexp" , regexp ); | 92 | cfg.writeEntry( "regexp" , regexp ); |
93 | cfg.writeEntry( "completewords" , completewords ); | 93 | cfg.writeEntry( "completewords" , completewords ); |
94 | } | 94 | } |
95 | 95 | ||
96 | void ODict::slotDisplayAbout() | ||
97 | { | ||
98 | QMessageBox::about( this, tr( "About ODict" ), tr( "OPIE-Dictionary ODict \n (c) 2002, 2003 Carsten Niehaus \n cniehaus@handhelds.org \n Version 20030111" ) ); | ||
99 | } | ||
100 | |||
101 | void ODict::slotStartQuery() | 96 | void ODict::slotStartQuery() |
102 | { | 97 | { |
103 | QString querystring = query_le->text(); | 98 | QString querystring = query_le->text(); |
104 | //X qDebug("opening dict >%s< for >%s<", activated_name.latin1(),querystring.latin1()); | 99 | //X qDebug("opening dict >%s< for >%s<", activated_name.latin1(),querystring.latin1()); |
105 | //X if (querystring.isEmpty()){ | 100 | //X if (querystring.isEmpty()){ |
106 | //X qWarning("empty querystring"); | 101 | //X qWarning("empty querystring"); |
107 | //X return; | 102 | //X return; |
108 | //X } | 103 | //X } |
109 | //X if (!activated_name || activated_name.isEmpty()) | 104 | //X if (!activated_name || activated_name.isEmpty()) |
110 | //X QMessageBox::warning(this,tr("No Dictionary"),tr("Please choose a dictonary") ); | 105 | //X QMessageBox::warning(this,tr("No Dictionary"),tr("Please choose a dictonary") ); |
111 | //X else | 106 | //X else |
112 | //X { | 107 | //X { |
113 | 108 | ||
114 | ding->setCaseSensitive( casesens ); | 109 | ding->setCaseSensitive( casesens ); |
115 | ding->setCompleteWord( completewords ); | 110 | ding->setCompleteWord( completewords ); |
116 | ding->setDict( activated_name ); | 111 | ding->setDict( activated_name ); |
117 | 112 | ||
118 | if ( activated_name != ding->loadedDict() ) | 113 | if ( activated_name != ding->loadedDict() ) |
119 | { | 114 | { |
120 | ding->loadDict(activated_name); | 115 | ding->loadDict(activated_name); |
121 | } | 116 | } |
122 | 117 | ||
123 | BroswerContent test = ding->setText( querystring ); | 118 | BroswerContent test = ding->setText( querystring ); |
124 | 119 | ||
diff --git a/noncore/apps/odict/odict.h b/noncore/apps/odict/odict.h index b20c165..3065feb 100644 --- a/noncore/apps/odict/odict.h +++ b/noncore/apps/odict/odict.h | |||
@@ -36,31 +36,30 @@ class ODict : public QMainWindow | |||
36 | 36 | ||
37 | private: | 37 | private: |
38 | QPopupMenu *help, *settings, *parameter, *error_tol_menu; | 38 | QPopupMenu *help, *settings, *parameter, *error_tol_menu; |
39 | QMenuBar *menu; | 39 | QMenuBar *menu; |
40 | QHBox *hbox; | 40 | QHBox *hbox; |
41 | QLineEdit *query_le; | 41 | QLineEdit *query_le; |
42 | QComboBox *query_co; | 42 | QComboBox *query_co; |
43 | QPushButton *ok_button; | 43 | QPushButton *ok_button; |
44 | 44 | ||
45 | QVBoxLayout *vbox_layout; | 45 | QVBoxLayout *vbox_layout; |
46 | 46 | ||
47 | QAction *setting_a, *setting_b; | 47 | QAction *setting_a, *setting_b; |
48 | 48 | ||
49 | void setupMenus(); | 49 | void setupMenus(); |
50 | 50 | ||
51 | int errorTol; | 51 | int errorTol; |
52 | bool casesens, completewords, regexp; | 52 | bool casesens, completewords, regexp; |
53 | 53 | ||
54 | void loadConfig(); | 54 | void loadConfig(); |
55 | void saveConfig(); | 55 | void saveConfig(); |
56 | 56 | ||
57 | QString activated_name; | 57 | QString activated_name; |
58 | 58 | ||
59 | private slots: | 59 | private slots: |
60 | void slotDisplayAbout(); | ||
61 | void slotStartQuery(); | 60 | void slotStartQuery(); |
62 | void slotSetErrorcount( int ); | 61 | void slotSetErrorcount( int ); |
63 | void slotSettings(); | 62 | void slotSettings(); |
64 | void slotSetParameter( int ); | 63 | void slotSetParameter( int ); |
65 | void slotMethodChanged( int ); | 64 | void slotMethodChanged( int ); |
66 | }; | 65 | }; |