summaryrefslogtreecommitdiff
blob: 9ef23c30a7928139ece325194cf29102967aca9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
--- kdewebdev-3.5.9/kommander/plugin/specialinformation.h	2008-02-13 17:39:07.000000000 +0800
+++ kdewebdev-3.5.9/kommander/plugin/specialinformation.h	2008-03-17 03:35:12.321156400 +0800
@@ -23,7 +23,9 @@
 #include <qmap.h>
 #include <qpair.h>
 
-class SpecialFunction
+#include <kommander_export.h>
+
+class KOMMANDER_EXPORT SpecialFunction
 {
 public:
  
@@ -72,7 +74,7 @@
 
 
 
-class SpecialInformation
+class KOMMANDER_EXPORT SpecialInformation
 {
 public:
   SpecialInformation()  {m_defaultGroup = -1;}
--- kdewebdev-3.5.9/kommander/widget/kmdrmainwindow.h	2008-02-13 17:39:05.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widget/kmdrmainwindow.h	2008-03-17 03:33:25.357584466 +0800
@@ -13,15 +13,16 @@
 #define KmdrMainWindow_H
 
 #include <kmainwindow.h>
+#include <kommander_export.h>
 
 /**
 	@author Andras Mantia <amantia@kdewebdev.org>
 */
-class KmdrMainWindow : public KMainWindow
+class KOMMANDER_EXPORT KmdrMainWindow : public KMainWindow
 {
 Q_OBJECT
 public:
-    KmdrMainWindow(QWidget *parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose);
+    KmdrMainWindow(QWidget *parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose) __attribute__(( visibility("default")));
 
     ~KmdrMainWindow();
 
--- kdewebdev-3.5.9/kommander/widgets/aboutdialog.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/aboutdialog.h	2008-03-17 03:40:44.133450999 +0800
@@ -14,6 +14,7 @@
 
 #include <qlabel.h>
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class KAboutApplication;
 class KAboutData;
@@ -21,7 +22,7 @@
 /**
 	@author Andras Mantia <amantia@kdewebdev.org>
 */
-class AboutDialog : public QLabel, public KommanderWidget
+class KOMMANDER_EXPORT AboutDialog : public QLabel, public KommanderWidget
 {
   Q_OBJECT
   Q_PROPERTY(bool KommanderWidget READ isKommanderWidget)
--- kdewebdev-3.5.9/kommander/widgets/fontdialog.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/fontdialog.h	2008-03-17 03:40:53.901017329 +0800
@@ -14,13 +14,14 @@
 
 #include <qlabel.h>
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 #include <qfont.h>
 
 /**
 	@author Andras Mantia <amantia@kdewebdev.org>
 */
-class FontDialog : public QLabel, public KommanderWidget
+class KOMMANDER_EXPORT FontDialog : public QLabel, public KommanderWidget
 {
   Q_OBJECT
   Q_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
--- kdewebdev-3.5.9/kommander/widgets/konsole.h	2007-10-08 17:50:22.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/konsole.h	2008-03-17 03:38:52.265533310 +0800
@@ -25,6 +25,7 @@
 
 /* OTHER INCLUDES */
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class QWidget;
 class MyProcess;
--- kdewebdev-3.5.9/kommander/widgets/label.h	2007-10-08 17:50:22.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/label.h	2008-03-17 03:39:20.893726948 +0800
@@ -25,6 +25,7 @@
 
 /* OTHER INCLUDES */
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 #include <qlabel.h>
 
 class QWidget;
--- kdewebdev-3.5.9/kommander/widgets/pixmaplabel.h	2007-10-08 17:50:22.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/pixmaplabel.h	2008-03-17 03:39:24.328960805 +0800
@@ -26,6 +26,7 @@
 
 /* OTHER INCLUDES */
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 #include <qlabel.h>
 
 class QWidget;
--- kdewebdev-3.5.9/kommander/widgets/popupmenu.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/popupmenu.h	2008-03-17 03:41:13.204961280 +0800
@@ -15,6 +15,7 @@
 #include <qlabel.h>
 #include <qmap.h>
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 
 class KPopupMenu;
@@ -22,7 +23,7 @@
 /**
 	@author Andras Mantia <amantia@kdewebdev.org>
 */
-class PopupMenu : public QLabel, public KommanderWidget
+class KOMMANDER_EXPORT PopupMenu : public QLabel, public KommanderWidget
 {
   Q_OBJECT
   Q_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
--- kdewebdev-3.5.9/kommander/widgets/progressbar.h	2007-10-08 17:50:22.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/progressbar.h	2008-03-17 03:39:30.929408908 +0800
@@ -26,6 +26,7 @@
 /* OTHER INCLUDES */
 #include <kprogress.h>
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class QWidget;
 
--- kdewebdev-3.5.9/kommander/widgets/statusbar.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/statusbar.h	2008-03-17 03:39:32.993479371 +0800
@@ -26,6 +26,7 @@
 /* OTHER INCLUDES */
 #include <kstatusbar.h>
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class QWidget;
 
--- kdewebdev-3.5.9/kommander/widgets/table.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/table.h	2008-03-17 03:39:34.937368461 +0800
@@ -25,6 +25,7 @@
 
 /* OTHER INCLUDES */
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class QWidget;
 
--- kdewebdev-3.5.9/kommander/widgets/textbrowser.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/textbrowser.h	2008-03-17 03:39:36.693191036 +0800
@@ -25,6 +25,7 @@
 
 /* OTHER INCLUDES */
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class QShowEvent;
 class KOMMANDER_EXPORT TextBrowser: public KTextBrowser, public KommanderWidget
--- kdewebdev-3.5.9/kommander/widgets/timer.h	2007-10-08 17:50:22.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/timer.h	2008-03-17 03:39:42.144960057 +0800
@@ -22,6 +22,7 @@
 
 /* OTHER INCLUDES */
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 class QTimer;
 class KOMMANDER_EXPORT Timer : public QLabel, public KommanderWidget
--- kdewebdev-3.5.9/kommander/widgets/toolbox.h	2008-02-13 17:39:08.000000000 +0800
+++ kdewebdev-3.5.9/kommander/widgets/toolbox.h	2008-03-17 03:40:25.364960509 +0800
@@ -14,11 +14,12 @@
 
 #include <qtoolbox.h>
 #include <kommanderwidget.h>
+#include <kommander_export.h>
 
 /**
 	@author Andras Mantia <amantia@kdewebdev.org>
 */
-class ToolBox : public QToolBox, public KommanderWidget
+class KOMMANDER_EXPORT ToolBox : public QToolBox, public KommanderWidget
 {
   Q_OBJECT
   Q_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false)