summaryrefslogtreecommitdiff
path: root/noncore/apps/odict
authorcniehaus <cniehaus>2003-01-03 22:31:19 (UTC)
committer cniehaus <cniehaus>2003-01-03 22:31:19 (UTC)
commitda1889933ccd03ef948fef7debda0b7e13f12add (patch) (unidiff)
tree98df5c800d091800f1264dcbd601b951b0522a96 /noncore/apps/odict
parent5c6c68a2297762fe69ac6d1bd62fd0e09afeccb3 (diff)
downloadopie-da1889933ccd03ef948fef7debda0b7e13f12add.zip
opie-da1889933ccd03ef948fef7debda0b7e13f12add.tar.gz
opie-da1889933ccd03ef948fef7debda0b7e13f12add.tar.bz2
minifixes to avoid clashes with tille
Diffstat (limited to 'noncore/apps/odict') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp8
-rw-r--r--noncore/apps/odict/odict.cpp9
-rw-r--r--noncore/apps/odict/odict.h2
3 files changed, 16 insertions, 3 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index 6e3179f..61ddbbf 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -63,26 +63,28 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
63 QString left; 63 QString left;
64 QString right; 64 QString right;
65 QRegExp reg_div( "\\" ); 65 QRegExp reg_div( "\\" );
66 QRegExp reg_word( queryword ); 66 QRegExp reg_word( queryword );
67 //rot:QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; 67 //rot:QString substitute = "<font color='#FF0000'>"+queryword+"</font>";
68 QString substitute = "<a href=''>"+queryword+"</a>"; 68 QString substitute = "<a href=''>"+queryword+"</a>";
69 QStringList toplist, bottomlist; 69 QStringList toplist, bottomlist;
70 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) 70 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it )
71 { 71 {
72 current = *it; 72 current = *it;
73 left = current.left( current.find(reg_div) ); 73 left = current.left( current.find(reg_div) );
74 right = current.right( current.length() - current.find(reg_div) - 1 ); 74 right = current.right( current.length() - current.find(reg_div) - 1 );
75 if ( left.contains( reg_word ) ){ 75 if ( left.contains( reg_word ) )
76 {
76 left.replace( queryword, substitute ); 77 left.replace( queryword, substitute );
77 toplist.append( left + " -> " + right); 78 toplist.append( left + " -> " + right);
78 }else{ 79 }
80 else
81 {
79 right.replace( reg_word, substitute ); 82 right.replace( reg_word, substitute );
80 bottomlist.append( right + " -> " + left ); 83 bottomlist.append( right + " -> " + left );
81 } 84 }
82 // .replace( reg_word, substitute );
83 } 85 }
84 86
85 //thats it, the lists are rendered. Lets put them in one string 87 //thats it, the lists are rendered. Lets put them in one string
86 bottom = bottomlist.join( "<br>\n" ); 88 bottom = bottomlist.join( "<br>\n" );
87 top = toplist.join( "<br>\n" ); 89 top = toplist.join( "<br>\n" );
88} 90}
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 166f6b9..7de9169 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -23,54 +23,63 @@
23#include <qmenubar.h> 23#include <qmenubar.h>
24#include <qmessagebox.h> 24#include <qmessagebox.h>
25#include <qpe/config.h> 25#include <qpe/config.h>
26#include <qhbox.h> 26#include <qhbox.h>
27#include <qvbox.h> 27#include <qvbox.h>
28#include <qlabel.h> 28#include <qlabel.h>
29#include <qpushbutton.h> 29#include <qpushbutton.h>
30#include <qlineedit.h> 30#include <qlineedit.h>
31#include <qmainwindow.h> 31#include <qmainwindow.h>
32#include <qstring.h> 32#include <qstring.h>
33#include <qaction.h> 33#include <qaction.h>
34#include <qtextbrowser.h> 34#include <qtextbrowser.h>
35#include <qcombobox.h>
35 36
36#include <qpe/resource.h> 37#include <qpe/resource.h>
37 38
38 39
39ODict::ODict() : QMainWindow() 40ODict::ODict() : QMainWindow()
40{ 41{
41 vbox = new QVBox( this ); 42 vbox = new QVBox( this );
42 setCaption( tr( "OPIE-Dictionary" ) ); 43 setCaption( tr( "OPIE-Dictionary" ) );
43 setupMenus(); 44 setupMenus();
44 45
45 QHBox *hbox = new QHBox( vbox ); 46 QHBox *hbox = new QHBox( vbox );
46 QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); query_label->show(); 47 QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); query_label->show();
47 query_le = new QLineEdit( hbox ); 48 query_le = new QLineEdit( hbox );
49 query_co = new QComboBox( hbox );
48 ok_button = new QPushButton( tr( "&Ok" ), hbox ); 50 ok_button = new QPushButton( tr( "&Ok" ), hbox );
49 connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) ); 51 connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) );
50 browser_top = new QTextBrowser( vbox ); 52 browser_top = new QTextBrowser( vbox );
51 browser_bottom = new QTextBrowser( vbox ); 53 browser_bottom = new QTextBrowser( vbox );
52 54
53 loadConfig(); 55 loadConfig();
54 setCentralWidget( vbox ); 56 setCentralWidget( vbox );
55} 57}
56 58
57void ODict::loadConfig() 59void ODict::loadConfig()
58{ 60{
59 Config cfg ( "odict" ); 61 Config cfg ( "odict" );
60 cfg.setGroup( "generalsettings" ); 62 cfg.setGroup( "generalsettings" );
61 errorTol = cfg.readEntry( "errtol" ).toInt(); 63 errorTol = cfg.readEntry( "errtol" ).toInt();
62 casesens = cfg.readEntry( "casesens" ).toInt(); 64 casesens = cfg.readEntry( "casesens" ).toInt();
63 regexp = cfg.readEntry( "regexp" ).toInt(); 65 regexp = cfg.readEntry( "regexp" ).toInt();
64 completewords = cfg.readEntry( "completewords" ).toInt(); 66 completewords = cfg.readEntry( "completewords" ).toInt();
67
68 QStringList groupListCfg = cfg.groupList().grep( "Method_" );
69 for ( QStringList::Iterator it = groupListCfg.begin() ; it != groupListCfg.end() ; ++it )
70 {
71 cfg.setGroup( *it );
72 query_co->insertItem( cfg.readEntry( "Name" ) );
73 }
65} 74}
66 75
67 76
68void ODict::saveConfig() 77void ODict::saveConfig()
69{ 78{
70 Config cfg ( "odict" ); 79 Config cfg ( "odict" );
71 cfg.setGroup( "generalsettings" ); 80 cfg.setGroup( "generalsettings" );
72 cfg.writeEntry( "errtol" , errorTol ); 81 cfg.writeEntry( "errtol" , errorTol );
73 cfg.writeEntry( "casesens" , casesens ); 82 cfg.writeEntry( "casesens" , casesens );
74 cfg.writeEntry( "regexp" , regexp ); 83 cfg.writeEntry( "regexp" , regexp );
75 cfg.writeEntry( "completewords" , completewords ); 84 cfg.writeEntry( "completewords" , completewords );
76} 85}
diff --git a/noncore/apps/odict/odict.h b/noncore/apps/odict/odict.h
index ef0822d..7c1f32f 100644
--- a/noncore/apps/odict/odict.h
+++ b/noncore/apps/odict/odict.h
@@ -11,40 +11,42 @@
11 11
12class QVBox; 12class QVBox;
13class QPopupMenu; 13class QPopupMenu;
14class QMenuBar; 14class QMenuBar;
15class QHBox; 15class QHBox;
16class QPushButton; 16class QPushButton;
17class QLineEdit; 17class QLineEdit;
18class QAction; 18class QAction;
19class QVBoxLayout; 19class QVBoxLayout;
20class QActionGroup; 20class QActionGroup;
21class DingWidget; 21class DingWidget;
22class QTextBrowser; 22class QTextBrowser;
23class QComboBox;
23 24
24class ODict : public QMainWindow 25class ODict : public QMainWindow
25{ 26{
26 Q_OBJECT 27 Q_OBJECT
27 28
28 public: 29 public:
29 ODict(); 30 ODict();
30 QVBox *vbox; 31 QVBox *vbox;
31 QTextBrowser *browser_top, 32 QTextBrowser *browser_top,
32 *browser_bottom; 33 *browser_bottom;
33 34
34 private: 35 private:
35 QPopupMenu *help, *settings, *parameter, *error_tol_menu; 36 QPopupMenu *help, *settings, *parameter, *error_tol_menu;
36 QMenuBar *menu; 37 QMenuBar *menu;
37 QHBox *hbox; 38 QHBox *hbox;
38 QLineEdit *query_le; 39 QLineEdit *query_le;
40 QComboBox *query_co;
39 QPushButton *ok_button; 41 QPushButton *ok_button;
40 42
41 QVBoxLayout *vbox_layout; 43 QVBoxLayout *vbox_layout;
42 44
43 QAction *setting_a, *setting_b; 45 QAction *setting_a, *setting_b;
44 46
45 //DingWidget *ding; 47 //DingWidget *ding;
46 48
47 void setupMenus(); 49 void setupMenus();
48 50
49 int errorTol; 51 int errorTol;
50 bool casesens, completewords, regexp; 52 bool casesens, completewords, regexp;