summaryrefslogtreecommitdiff
path: root/noncore/apps
Unidiff
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-sheet/cellformat.cpp47
-rw-r--r--noncore/apps/opie-sheet/finddlg.cpp2
-rw-r--r--noncore/apps/opie-sheet/mainwindow.cpp2
-rw-r--r--noncore/apps/opie-sheet/numberdlg.cpp5
-rw-r--r--noncore/apps/opie-sheet/sheet.cpp14
-rw-r--r--noncore/apps/opie-sheet/sortdlg.cpp5
-rw-r--r--noncore/apps/opie-sheet/textdlg.cpp5
7 files changed, 55 insertions, 25 deletions
diff --git a/noncore/apps/opie-sheet/cellformat.cpp b/noncore/apps/opie-sheet/cellformat.cpp
index 597502c..342ebe9 100644
--- a/noncore/apps/opie-sheet/cellformat.cpp
+++ b/noncore/apps/opie-sheet/cellformat.cpp
@@ -24,16 +24,37 @@
24#define STYLE_COUNT 14 24#define STYLE_COUNT 14
25#define HALIGN_COUNT 3 25#define HALIGN_COUNT 3
26#define VALIGN_COUNT 3 26#define VALIGN_COUNT 3
27 27
28QColor qtColors[COLOR_COUNT]={Qt::black, Qt::white, Qt::darkGray, Qt::gray, Qt::lightGray, Qt::red, Qt::green, Qt::blue, Qt::cyan, Qt::magenta, Qt::yellow, Qt::darkRed, Qt::darkGreen, Qt::darkBlue, Qt::darkCyan, Qt::darkMagenta, Qt::darkYellow}; 28QColor qtColors[COLOR_COUNT]={Qt::black,Qt::white, Qt::darkGray,
29Qt::BrushStyle brushStyles[STYLE_COUNT]={Qt::SolidPattern, Qt::Dense1Pattern, Qt::Dense2Pattern, Qt::Dense3Pattern, Qt::Dense4Pattern, Qt::Dense5Pattern, Qt::Dense6Pattern, Qt::Dense7Pattern, Qt::HorPattern, Qt::VerPattern, Qt::CrossPattern, Qt::BDiagPattern, Qt::FDiagPattern, Qt::DiagCrossPattern}; 29 Qt::gray, Qt::lightGray, Qt::red,
30 Qt::green, Qt::blue, Qt::cyan,
31 Qt::magenta, Qt::yellow,
32 Qt::darkRed, Qt::darkGreen,
33 Qt::darkBlue, Qt::darkCyan,
34 Qt::darkMagenta, Qt::darkYellow};
35
36Qt::BrushStyle brushStyles[STYLE_COUNT]={Qt::SolidPattern,
37 Qt::Dense1Pattern, Qt::Dense2Pattern,
38 Qt::Dense3Pattern, Qt::Dense4Pattern,
39 Qt::Dense5Pattern, Qt::Dense6Pattern,
40 Qt::Dense7Pattern, Qt::HorPattern,
41 Qt::VerPattern, Qt::CrossPattern,
42 Qt::BDiagPattern, Qt::FDiagPattern,
43 Qt::DiagCrossPattern};
44
30QString namesHAlign[HALIGN_COUNT]={"Left", "Right", "Center"}; 45QString namesHAlign[HALIGN_COUNT]={"Left", "Right", "Center"};
31QString namesVAlign[VALIGN_COUNT]={"Top", "Bottom", "Center"}; 46QString namesVAlign[VALIGN_COUNT]={"Top", "Bottom", "Center"};
32Qt::AlignmentFlags flagsHAlign[HALIGN_COUNT]={Qt::AlignLeft, Qt::AlignRight, Qt::AlignHCenter};
33Qt::AlignmentFlags flagsVAlign[VALIGN_COUNT]={Qt::AlignTop, Qt::AlignBottom, Qt::AlignVCenter};
34 47
35CellFormat::CellFormat(QWidget *parent=0) 48Qt::AlignmentFlags flagsHAlign[HALIGN_COUNT]={Qt::AlignLeft,
49 Qt::AlignRight,
50 Qt::AlignHCenter};
51
52Qt::AlignmentFlags flagsVAlign[VALIGN_COUNT]={Qt::AlignTop,
53 Qt::AlignBottom,
54 Qt::AlignVCenter};
55
56CellFormat::CellFormat(QWidget *parent)
36 :QDialog(parent, 0, TRUE) 57 :QDialog(parent, 0, TRUE)
37{ 58{
38 // Main widget 59 // Main widget
39 tabs=new QTabWidget(this); 60 tabs=new QTabWidget(this);
@@ -51,16 +72,20 @@ CellFormat::CellFormat(QWidget *parent=0)
51 72
52 // Borders tab 73 // Borders tab
53 borderEditor=new BorderEditor(widgetBorders); 74 borderEditor=new BorderEditor(widgetBorders);
54 borderEditor->setGeometry(10, 10, 215, 145); 75 borderEditor->setGeometry(10, 10, 215, 145);
55 connect(borderEditor, SIGNAL(clicked(BorderEditor::BorderArea)), this, SLOT(borderClicked(BorderEditor::BorderArea))); 76 connect(borderEditor, SIGNAL(clicked(BorderEditor::BorderArea)),
77 this, SLOT(borderClicked(BorderEditor::BorderArea)));
56 78
57 comboBordersWidth=createCombo(COMBO_WIDTH, widgetBorders, tr("&Width:"), 165); 79 comboBordersWidth=createCombo(COMBO_WIDTH, widgetBorders, tr("&Width:"), 165);
58 comboBordersColor=createCombo(COMBO_COLOR, widgetBorders, tr("&Color:"), 165+(COMBO_HEIGHTS+10)); 80 comboBordersColor=createCombo(COMBO_COLOR, widgetBorders, tr("&Color:"), 165+(COMBO_HEIGHTS+10));
59 81
60 buttonBordersDefaults=new QPushButton(tr("&Default Borders"), widgetBorders); 82 buttonBordersDefaults=new QPushButton(tr("&Default Borders"), widgetBorders);
61 buttonBordersDefaults->setGeometry(115, 165+2*(COMBO_HEIGHTS+10), 110, COMBO_HEIGHTS); 83 buttonBordersDefaults->setGeometry(115, 165+2*(COMBO_HEIGHTS+10),
62 connect(buttonBordersDefaults, SIGNAL(clicked()), this, SLOT(slotBordersDefaults())); 84 110, COMBO_HEIGHTS);
85
86 connect(buttonBordersDefaults, SIGNAL(clicked()),
87 this, SLOT(slotBordersDefaults()));
63 88
64 // Background tab 89 // Background tab
65 frameBackground=new QFrame(widgetBackground); 90 frameBackground=new QFrame(widgetBackground);
66 frameBackground->setGeometry(10, 10, 215, 145); 91 frameBackground->setGeometry(10, 10, 215, 145);
@@ -291,9 +316,10 @@ int CellFormat::findComboItemIndex(QComboBox *combo, const QString &item)
291 return i; 316 return i;
292 return 0; 317 return 0;
293} 318}
294 319
295QComboBox *CellFormat::createCombo(comboType type, QWidget *parent, const QString &caption, int y) 320QComboBox *CellFormat::createCombo(comboType type, QWidget *parent,
321 const QString &caption, int y)
296{ 322{
297 QComboBox *combo=new QComboBox(FALSE, parent); 323 QComboBox *combo=new QComboBox(FALSE, parent);
298 combo->setGeometry(70, y, COMBO_WIDTHS, COMBO_HEIGHTS); 324 combo->setGeometry(70, y, COMBO_WIDTHS, COMBO_HEIGHTS);
299 combo->setSizeLimit(5); 325 combo->setSizeLimit(5);
@@ -306,8 +332,9 @@ QComboBox *CellFormat::createCombo(comboType type, QWidget *parent, const QStrin
306 case COMBO_SIZE: createSizeCombo(combo); break; 332 case COMBO_SIZE: createSizeCombo(combo); break;
307 case COMBO_COLOR: createColorCombo(combo); break; 333 case COMBO_COLOR: createColorCombo(combo); break;
308 case COMBO_HALIGN: createHAlignCombo(combo); break; 334 case COMBO_HALIGN: createHAlignCombo(combo); break;
309 case COMBO_VALIGN: createVAlignCombo(combo); break; 335 case COMBO_VALIGN: createVAlignCombo(combo); break;
336 default: break;
310 } 337 }
311 338
312 QLabel *label=new QLabel(combo, caption, parent); 339 QLabel *label=new QLabel(combo, caption, parent);
313 label->setGeometry(10, y, 50, COMBO_HEIGHTS); 340 label->setGeometry(10, y, 50, COMBO_HEIGHTS);
@@ -494,9 +521,9 @@ int CellFormat::exec(Sheet *s)
494// 521//
495// Border Editor 522// Border Editor
496// 523//
497 524
498BorderEditor::BorderEditor(QWidget *parent=0) 525BorderEditor::BorderEditor(QWidget *parent)
499 :QFrame(parent) 526 :QFrame(parent)
500{ 527{
501 setFrameStyle(QFrame::StyledPanel | QFrame::Sunken); 528 setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
502} 529}
diff --git a/noncore/apps/opie-sheet/finddlg.cpp b/noncore/apps/opie-sheet/finddlg.cpp
index d1237ca..e4c6ec8 100644
--- a/noncore/apps/opie-sheet/finddlg.cpp
+++ b/noncore/apps/opie-sheet/finddlg.cpp
@@ -15,9 +15,9 @@
15#include <qlabel.h> 15#include <qlabel.h>
16#include <qradiobutton.h> 16#include <qradiobutton.h>
17#include "finddlg.h" 17#include "finddlg.h"
18 18
19FindDialog::FindDialog(QWidget *parent=0) 19FindDialog::FindDialog(QWidget *parent)
20 :QDialog(parent, 0, TRUE) 20 :QDialog(parent, 0, TRUE)
21{ 21{
22 // Main widget 22 // Main widget
23 tabs=new QTabWidget(this); 23 tabs=new QTabWidget(this);
diff --git a/noncore/apps/opie-sheet/mainwindow.cpp b/noncore/apps/opie-sheet/mainwindow.cpp
index 09ee68b..2f07bae 100644
--- a/noncore/apps/opie-sheet/mainwindow.cpp
+++ b/noncore/apps/opie-sheet/mainwindow.cpp
@@ -165,9 +165,9 @@ void MainWindow::documentOpen(const DocLnk &lnkDoc)
165 } 165 }
166 } 166 }
167} 167}
168 168
169int MainWindow::saveCurrentFile(bool ask=TRUE) 169int MainWindow::saveCurrentFile(bool ask)
170{ 170{
171 if (ask) 171 if (ask)
172 { 172 {
173 int result=QMessageBox::information(this, tr("Save File"), tr("Do you want to save the current file?"), QMessageBox::Yes, QMessageBox::No, QMessageBox::Cancel); 173 int result=QMessageBox::information(this, tr("Save File"), tr("Do you want to save the current file?"), QMessageBox::Yes, QMessageBox::No, QMessageBox::Cancel);
diff --git a/noncore/apps/opie-sheet/numberdlg.cpp b/noncore/apps/opie-sheet/numberdlg.cpp
index e8de639..90fbaa2 100644
--- a/noncore/apps/opie-sheet/numberdlg.cpp
+++ b/noncore/apps/opie-sheet/numberdlg.cpp
@@ -13,9 +13,9 @@
13 */ 13 */
14 14
15#include "numberdlg.h" 15#include "numberdlg.h"
16 16
17NumberDialog::NumberDialog(QWidget *parent=0) 17NumberDialog::NumberDialog(QWidget *parent)
18 :QDialog(parent, 0, TRUE) 18 :QDialog(parent, 0, TRUE)
19{ 19{
20 edit=new QSpinBox(this); 20 edit=new QSpinBox(this);
21 edit->setGeometry(120, 10, 70, 25); 21 edit->setGeometry(120, 10, 70, 25);
@@ -30,9 +30,10 @@ NumberDialog::NumberDialog(QWidget *parent=0)
30NumberDialog::~NumberDialog() 30NumberDialog::~NumberDialog()
31{ 31{
32} 32}
33 33
34int NumberDialog::exec(const QString &caption, const QString &text, int value=1, int min=1, int max=99, int step=1) 34int NumberDialog::exec(const QString &caption, const QString &text,
35 int value, int min, int max, int step)
35{ 36{
36 setCaption(caption); 37 setCaption(caption);
37 label->setText(text); 38 label->setText(text);
38 edit->setValue(value); 39 edit->setValue(value);
diff --git a/noncore/apps/opie-sheet/sheet.cpp b/noncore/apps/opie-sheet/sheet.cpp
index 1d7ec6f..2279191 100644
--- a/noncore/apps/opie-sheet/sheet.cpp
+++ b/noncore/apps/opie-sheet/sheet.cpp
@@ -106,9 +106,9 @@ void Sheet::swapCells(int row1, int col1, int row2, int col2)
106 emit sheetModified(); 106 emit sheetModified();
107 } 107 }
108} 108}
109 109
110QString Sheet::getParameter(const QString &parameters, int paramNo, bool giveError=FALSE, const QString funcName="") 110QString Sheet::getParameter(const QString &parameters, int paramNo, bool giveError, const QString funcName)
111{ 111{
112 QString params(parameters); 112 QString params(parameters);
113 int position; 113 int position;
114 for (int i=0; i<paramNo; ++i) 114 for (int i=0; i<paramNo; ++i)
@@ -144,9 +144,9 @@ bool Sheet::findRange(const QString &variable1, const QString &variable2, int *r
144 } 144 }
145 return TRUE; 145 return TRUE;
146} 146}
147 147
148bool Sheet::findRowColumn(const QString &variable, int *row, int *col, bool giveError=FALSE) 148bool Sheet::findRowColumn(const QString &variable, int *row, int *col, bool giveError)
149{ 149{
150 int position=variable.find(QRegExp("\\d")); 150 int position=variable.find(QRegExp("\\d"));
151 if (position<1) 151 if (position<1)
152 { 152 {
@@ -451,9 +451,9 @@ QString Sheet::getData()
451 return cellData->data; 451 return cellData->data;
452 return ""; 452 return "";
453} 453}
454 454
455void Sheet::lockClicks(bool lock=TRUE) 455void Sheet::lockClicks(bool lock)
456{ 456{
457 clicksLocked=lock; 457 clicksLocked=lock;
458} 458}
459 459
@@ -735,9 +735,9 @@ void Sheet::editCut()
735 editCopy(); 735 editCopy();
736 editClear(); 736 editClear();
737} 737}
738 738
739void Sheet::editPaste(bool onlyContents=FALSE) 739void Sheet::editPaste(bool onlyContents)
740{ 740{
741 int row1=currentRow(), col1=currentColumn(); 741 int row1=currentRow(), col1=currentColumn();
742 typeCellData *cellData, *tempCellData; 742 typeCellData *cellData, *tempCellData;
743 743
@@ -760,9 +760,9 @@ void Sheet::editPaste(bool onlyContents=FALSE)
760 } 760 }
761 } 761 }
762} 762}
763 763
764void Sheet::insertRows(int no=1, bool allColumns=TRUE) 764void Sheet::insertRows(int no, bool allColumns)
765{ 765{
766 setNumRows(numRows()+no); 766 setNumRows(numRows()+no);
767 767
768 typeCellData *tempCellData; 768 typeCellData *tempCellData;
@@ -782,9 +782,9 @@ void Sheet::insertRows(int no=1, bool allColumns=TRUE)
782 } 782 }
783 emit sheetModified(); 783 emit sheetModified();
784} 784}
785 785
786void Sheet::insertColumns(int no=1, bool allRows=TRUE) 786void Sheet::insertColumns(int no, bool allRows)
787{ 787{
788 int noCols=numCols(); 788 int noCols=numCols();
789 int newCols=noCols+no; 789 int newCols=noCols+no;
790 setNumCols(newCols); 790 setNumCols(newCols);
@@ -808,9 +808,9 @@ void Sheet::insertColumns(int no=1, bool allRows=TRUE)
808 } 808 }
809 emit sheetModified(); 809 emit sheetModified();
810} 810}
811 811
812void Sheet::dataFindReplace(const QString &findStr, const QString &replaceStr, bool matchCase=TRUE, bool allCells=TRUE, bool entireCell=FALSE, bool replace=FALSE, bool replaceAll=FALSE) 812void Sheet::dataFindReplace(const QString &findStr, const QString &replaceStr, bool matchCase, bool allCells, bool entireCell, bool replace, bool replaceAll)
813{ 813{
814 typeCellData *tempCellData; 814 typeCellData *tempCellData;
815 int row1, col1, row2, col2; 815 int row1, col1, row2, col2;
816 getSelection(&row1, &col1, &row2, &col2); 816 getSelection(&row1, &col1, &row2, &col2);
diff --git a/noncore/apps/opie-sheet/sortdlg.cpp b/noncore/apps/opie-sheet/sortdlg.cpp
index c60be0d..c2cdec8 100644
--- a/noncore/apps/opie-sheet/sortdlg.cpp
+++ b/noncore/apps/opie-sheet/sortdlg.cpp
@@ -16,9 +16,9 @@
16#include <qradiobutton.h> 16#include <qradiobutton.h>
17#include <qmessagebox.h> 17#include <qmessagebox.h>
18#include "sortdlg.h" 18#include "sortdlg.h"
19 19
20SortDialog::SortDialog(QWidget *parent=0) 20SortDialog::SortDialog(QWidget *parent)
21 :QDialog(parent, 0, TRUE) 21 :QDialog(parent, 0, TRUE)
22{ 22{
23 // Main widget 23 // Main widget
24 tabs=new QTabWidget(this); 24 tabs=new QTabWidget(this);
@@ -177,9 +177,10 @@ int SortDialog::exec(Sheet *s)
177 } 177 }
178 return QDialog::Rejected; 178 return QDialog::Rejected;
179} 179}
180 180
181int SortDialog::compareItems(QTableItem *item1, QTableItem *item2, int descending=0, bool caseSensitive=TRUE) 181int SortDialog::compareItems(QTableItem *item1, QTableItem *item2,
182 int descending, bool caseSensitive)
182{ 183{
183 int result=0; 184 int result=0;
184 if (item1) 185 if (item1)
185 { 186 {
diff --git a/noncore/apps/opie-sheet/textdlg.cpp b/noncore/apps/opie-sheet/textdlg.cpp
index 0810eb2..34cec29 100644
--- a/noncore/apps/opie-sheet/textdlg.cpp
+++ b/noncore/apps/opie-sheet/textdlg.cpp
@@ -13,9 +13,9 @@
13 */ 13 */
14 14
15#include "textdlg.h" 15#include "textdlg.h"
16 16
17TextDialog::TextDialog(QWidget *parent=0) 17TextDialog::TextDialog(QWidget *parent)
18 :QDialog(parent, 0, TRUE) 18 :QDialog(parent, 0, TRUE)
19{ 19{
20 edit=new QLineEdit(this); 20 edit=new QLineEdit(this);
21 edit->setGeometry(90, 10, 100, 25); 21 edit->setGeometry(90, 10, 100, 25);
@@ -30,9 +30,10 @@ TextDialog::TextDialog(QWidget *parent=0)
30TextDialog::~TextDialog() 30TextDialog::~TextDialog()
31{ 31{
32} 32}
33 33
34int TextDialog::exec(const QString &caption, const QString &text, const QString &value="") 34int TextDialog::exec(const QString &caption, const QString &text,
35 const QString &value)
35{ 36{
36 setCaption(caption); 37 setCaption(caption);
37 label->setText(text); 38 label->setText(text);
38 edit->setText(value); 39 edit->setText(value);