summaryrefslogtreecommitdiff
path: root/noncore/todayplugins
authorllornkcor <llornkcor>2002-11-05 13:28:39 (UTC)
committer llornkcor <llornkcor>2002-11-05 13:28:39 (UTC)
commit0750e839e1d10069dbde7e669a345800f0ec088f (patch) (side-by-side diff)
treeee5a3f70ffc192a7c530ae0f3c5731e31e236128 /noncore/todayplugins
parenta7741f90c43f13371cd02bb4dd7e0c05208c04d5 (diff)
downloadopie-0750e839e1d10069dbde7e669a345800f0ec088f.zip
opie-0750e839e1d10069dbde7e669a345800f0ec088f.tar.gz
opie-0750e839e1d10069dbde7e669a345800f0ec088f.tar.bz2
changed layout and uncommented whatsthis
Diffstat (limited to 'noncore/todayplugins') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.cpp65
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h2
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp1
3 files changed, 34 insertions, 34 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.cpp
index 1334e7d..11b615b 100644
--- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.cpp
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.cpp
@@ -40,14 +40,14 @@ StocktickerPluginConfig::StocktickerPluginConfig( QWidget *parent, const char*
: TodayConfigWidget(parent, name ) {
QGridLayout *layout = new QGridLayout( this );
- layout->setSpacing(6);
+ layout->setSpacing(2);
layout->setMargin( 2);
LineEdit1 = new QLineEdit( this, "LineEdit1" );
LineEdit1->setFocus();
// QWhatsThis::add( LineEdit1, tr("Enter the stock symbols you want to be shown here."));
- layout->addMultiCellWidget( LineEdit1, 0, 0, 0, 3);
+ layout->addMultiCellWidget( LineEdit1, 0, 0, 0, 4);
Config cfg( "stockticker");
cfg.setGroup( "Symbols" );
@@ -59,65 +59,64 @@ StocktickerPluginConfig::StocktickerPluginConfig( QWidget *parent, const char*
label = new QLabel(this);
label->setText( tr("Enter stock symbols seperated\nby a space."));
label->setMaximumHeight(60);
- layout->addMultiCellWidget( label, 1, 1, 0, 3);
+ layout->addMultiCellWidget( label, 1, 1, 0, 4);
cfg.setGroup( "Fields" );
timeCheck= new QCheckBox ( "Time",this );
timeCheck->setChecked( cfg.readBoolEntry("timeCheck",1));
layout->addMultiCellWidget(timeCheck, 2, 2, 0, 0 );
-// QWhatsThis::add( timeCheck, tr("Toggles Time Field"));
+ QWhatsThis::add( timeCheck, tr("Toggles Time of current price field"));
dateCheck= new QCheckBox ( "Date", this );
dateCheck->setChecked( cfg.readBoolEntry("dateCheck",1));
layout->addMultiCellWidget( dateCheck, 2, 2, 1, 1 );
-// QWhatsThis::add(dateCheck, tr("Toggles date field"));
+ QWhatsThis::add(dateCheck, tr("Toggles date field"));
symbolCheck= new QCheckBox ( "Symbol", this );
symbolCheck->setChecked( cfg.readBoolEntry("symbolCheck",1));
- layout->addMultiCellWidget( symbolCheck, 3, 3, 0, 0 );
-// QWhatsThis::add(symbolCheck, tr("Toggles Symbol field"));
+ layout->addMultiCellWidget( symbolCheck, 2, 2, 2, 2 );
+ QWhatsThis::add(symbolCheck, tr("Toggles Symbol field"));
nameCheck= new QCheckBox ( "Name", this );
nameCheck->setChecked( cfg.readBoolEntry("nameCheck",1));
- layout->addMultiCellWidget( nameCheck, 3, 3, 1, 1 );
-// QWhatsThis::add(nameCheck, tr("Toggles Name field"));
+ layout->addMultiCellWidget( nameCheck, 3, 3, 0, 0 );
+ QWhatsThis::add(nameCheck, tr("Toggles Name of symbols owner field"));
- currentPriceCheck= new QCheckBox ( "Current Price", this );
+ currentPriceCheck= new QCheckBox ( "Price", this );
currentPriceCheck->setChecked( cfg.readBoolEntry("currentPriceCheck",1));
- layout->addMultiCellWidget( currentPriceCheck, 4, 4, 0, 0 );
-// QWhatsThis::add(currentPriceCheck, tr("Toggles current Price field"));
-
+ layout->addMultiCellWidget( currentPriceCheck, 3, 3, 1, 1 );
+ QWhatsThis::add(currentPriceCheck, tr("Toggles current Price field"));
lastPriceCheck= new QCheckBox ( "Last Price", this );
lastPriceCheck->setChecked( cfg.readBoolEntry("lastPriceCheck",1));
- layout->addMultiCellWidget(lastPriceCheck, 4, 4, 1, 1);
-// QWhatsThis::add(lastPriceCheck, tr("Toggles last price field"));
+ layout->addMultiCellWidget(lastPriceCheck, 3, 3, 2, 2);
+ QWhatsThis::add(lastPriceCheck, tr("Toggles last price field"));
openPriceCheck= new QCheckBox ( "Open Price", this);
openPriceCheck->setChecked( cfg.readBoolEntry("openPriceCheck",1));
- layout->addMultiCellWidget( openPriceCheck, 5, 5, 0, 0 );
-// QWhatsThis::add(openPriceCheck, tr("Toggles opening price field"));
+ layout->addMultiCellWidget( openPriceCheck, 4, 4, 0, 0 );
+ QWhatsThis::add(openPriceCheck, tr("Toggles opening price field"));
minPriceCheck= new QCheckBox ( "Min Price", this );
minPriceCheck->setChecked( cfg.readBoolEntry("minPriceCheck",1));
- layout->addMultiCellWidget( minPriceCheck, 5, 5, 1, 1);
-// QWhatsThis::add(minPriceCheck, tr("Toggles minamum price field"));
+ layout->addMultiCellWidget( minPriceCheck, 4, 4, 1, 1);
+ QWhatsThis::add(minPriceCheck, tr("Toggles minimum daily price field"));
maxPriceCheck= new QCheckBox ( "Max Price", this);
maxPriceCheck->setChecked( cfg.readBoolEntry("maxPriceCheck",1));
- layout->addMultiCellWidget( maxPriceCheck, 6, 6, 0, 0 );
-// QWhatsThis::add(maxPriceCheck, tr("Toggles maximum price field"));
+ layout->addMultiCellWidget( maxPriceCheck, 4, 4, 2, 2 );
+ QWhatsThis::add(maxPriceCheck, tr("Toggles maximum daily price field"));
variationCheck= new QCheckBox ( "Variation", this );
variationCheck->setChecked( cfg.readBoolEntry("variationCheck",1));
- layout->addMultiCellWidget( variationCheck, 6, 6, 1, 1 );
-// QWhatsThis::add(variationCheck, tr("Toggles daily variation field"));
+ layout->addMultiCellWidget( variationCheck, 5, 5, 0, 0 );
+ QWhatsThis::add(variationCheck, tr("Toggles daily variation of price field"));
volumeCheck= new QCheckBox ( "Volume", this );
volumeCheck->setChecked( cfg.readBoolEntry("volumeCheck",1));
- layout->addMultiCellWidget( volumeCheck , 7, 7, 0, 0);
-// QWhatsThis::add(volumeCheck, tr("Toggles volume field"));
+ layout->addMultiCellWidget( volumeCheck , 5, 5, 1, 1);
+ QWhatsThis::add(volumeCheck, tr("Toggles volume of trading field"));
timerDelaySpin = new QSpinBox( this, "timer spin" );
QWhatsThis::add( timerDelaySpin , tr( "How often stocks prices should be looked up. In minutes" ) );
@@ -125,21 +124,21 @@ StocktickerPluginConfig::StocktickerPluginConfig( QWidget *parent, const char*
cfg.setGroup("Timer");
timerDelaySpin->setValue( cfg.readNumEntry("Delay",0));
- layout->addMultiCellWidget( timerDelaySpin , 8, 8, 0, 0);
+ layout->addMultiCellWidget( timerDelaySpin , 6, 6, 0, 0);
QLabel *label2;
label2 = new QLabel(this);
- label2->setText( tr("Minutes between stock\nprice lookups."));
+ label2->setText( tr("Minutes between lookups."));
label2->setMaximumHeight(60);
- layout->addMultiCellWidget( label2, 8, 8, 1, 1);
+ layout->addMultiCellWidget( label2, 6, 6, 1, 2);
-// lookupButton = new QPushButton(this, "LookupButton");
-// lookupButton->setText(tr("Symbol Lookup"));
-// connect(lookupButton,SIGNAL(clicked()),SLOT( doLookup()));
-// layout->addMultiCellWidget( lookupButton , 9, 9, 0, 0);
+// lookupButton = new QPushButton(this, "LookupButton");
+// lookupButton->setText(tr("Symbol Lookup"));
+// connect(lookupButton,SIGNAL(clicked()),SLOT( doLookup()));
+// layout->addMultiCellWidget( lookupButton , 9, 9, 0, 0);
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Expanding );
- layout->addItem( spacer, 10, 0 );
+ layout->addItem( spacer, 8, 0 );
}
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h
index 4b950dc..33aed86 100644
--- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h
@@ -28,7 +28,7 @@ class QCheckBox;
class QSpinBox;
class StocktickerPluginConfig : public TodayConfigWidget {
-
+//Q_OBJECT
public:
StocktickerPluginConfig( QWidget *parent, const char *name );
~StocktickerPluginConfig();
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
index 1d53344..45c5c53 100644
--- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
@@ -241,6 +241,7 @@ void StockTickerPluginWidget::doStocks() {
cfg.setGroup( "Symbols" );
QString symbollist;
symbollist = cfg.readEntry("Symbols", "");
+ symbollist = cfg.readEntry("Symbols", "");
symbollist.replace(QRegExp(" "),"+");//seperated by +
// qDebug(symbollist);