Rev 13544 | Rev 20185 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
11895 | fschmid | 1 | /* |
2 | For general Scribus (>=1.3.2) copyright and licensing information please refer |
||
3 | to the COPYING file provided with the program. Following this notice may exist |
||
4 | a copyright and/or license notice that predates the release of Scribus 1.3.2 |
||
5 | for which a new license (GPL+exception) is in place. |
||
6 | */ |
||
7 | /************************************************************************** |
||
8 | * Copyright (C) 2008 by Franz Schmid * |
||
9 | * franz.schmid@altmuehlnet.de * |
||
10 | * * |
||
11 | * This program is free software; you can redistribute it and/or modify * |
||
12 | * it under the terms of the GNU General Public License as published by * |
||
13 | * the Free Software Foundation; either version 2 of the License, or * |
||
14 | * (at your option) any later version. * |
||
15 | * * |
||
16 | * This program is distributed in the hope that it will be useful, * |
||
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
19 | * GNU General Public License for more details. * |
||
20 | * * |
||
21 | * You should have received a copy of the GNU General Public License * |
||
22 | * along with this program; if not, write to the * |
||
23 | * Free Software Foundation, Inc., * |
||
18122 | mrdocs | 24 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * |
11895 | fschmid | 25 | ***************************************************************************/ |
26 | |||
27 | #include "replaceonecolor.h" |
||
28 | #include "util_icon.h" |
||
12162 | fschmid | 29 | #include "util.h" |
11895 | fschmid | 30 | |
31 | replaceColorDialog::replaceColorDialog(QWidget* parent, ColorList &availableColors, ColorList &usedColors) : QDialog(parent) |
||
32 | { |
||
33 | setupUi(this); |
||
34 | setModal(true); |
||
35 | setWindowIcon(QIcon(loadIcon( "AppIcon.png" ))); |
||
36 | originalColor->addItem(CommonStrings::tr_NoneColor); |
||
37 | originalColor->insertItems(usedColors, ColorCombo::fancyPixmaps); |
||
38 | replacementColor->addItem(CommonStrings::tr_NoneColor); |
||
39 | replacementColor->insertItems(availableColors, ColorCombo::fancyPixmaps); |
||
40 | } |
||
41 | |||
42 | const QString replaceColorDialog::getOriginalColor() |
||
43 | { |
||
44 | return originalColor->currentText(); |
||
45 | } |
||
46 | |||
47 | const QString replaceColorDialog::getReplacementColor() |
||
48 | { |
||
49 | return replacementColor->currentText(); |
||
50 | } |
||
12162 | fschmid | 51 | |
52 | void replaceColorDialog::setOriginalColor(QString color) |
||
53 | { |
||
54 | setCurrentComboItem(originalColor, color); |
||
55 | } |
||
56 | |||
57 | void replaceColorDialog::setReplacementColor(QString color) |
||
58 | { |
||
59 | setCurrentComboItem(replacementColor, color); |
||
60 | } |