Changeset 769 for trunk/tools/designer/src
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 54 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/tools/designer/src/components/formeditor/formwindow.cpp
r651 r769 2220 2220 } 2221 2221 2222 2223 2224 2225 2226 2222 2227 popup->addAction(manager->actionCut()); 2223 2228 popup->addAction(manager->actionCopy()); -
trunk/tools/designer/src/components/formeditor/formwindow.h
r651 r769 279 279 void checkPreviewGeometry(QRect &r); 280 280 281 void finishContextMenu(QWidget *w, QWidget *menuParent, QContextMenuEvent *e);282 283 281 bool handleContextMenu(QWidget *widget, QWidget *managedWidget, QContextMenuEvent *e); 284 282 bool handleMouseButtonDblClickEvent(QWidget *widget, QWidget *managedWidget, QMouseEvent *e); -
trunk/tools/designer/src/components/formeditor/qdesigner_resource.cpp
r651 r769 1447 1447 1448 1448 QList<QWidget*> tabOrder; 1449 foreach ( QStringwidgetName, tabStops->elementTabStop()) {1449 foreach (widgetName, tabStops->elementTabStop()) { 1450 1450 if (QWidget *w = qFindChild<QWidget*>(widget, widgetName)) { 1451 1451 tabOrder.append(w); … … 2419 2419 if (resourceSet) { 2420 2420 const QStringList activePaths = resourceSet->activeQrcPaths(); 2421 foreach ( QStringpath, activePaths) {2421 foreach (path, activePaths) { 2422 2422 if (qrcPaths.contains(path)) { 2423 2423 DomResource *dom_res = new DomResource; -
trunk/tools/designer/src/components/propertyeditor/designerpropertymanager.h
r651 r769 103 103 Q_OBJECT 104 104 public: 105 DesignerPropertyManager(QDesignerFormEditorInterface *core, QObject *parent = 0);105 DesignerPropertyManager(QDesignerFormEditorInterface *core, QObject *parent = 0); 106 106 ~DesignerPropertyManager(); 107 107 -
trunk/tools/designer/src/designer/qdesigner_actions.cpp
r651 r769 581 581 582 582 bool atLeastOne = false; 583 foreach ( QStringfileName, fileNames) {583 foreach (fileName, fileNames) { 584 584 if (readInForm(fileName) && !atLeastOne) 585 585 atLeastOne = true; … … 870 870 removeBackup(backupFile); 871 871 fi.setFile(fileName); 872 backupFile = QString();872 backupFile(); 873 873 if (fi.exists()) 874 874 backupFile = createBackup(fileName); -
trunk/tools/designer/src/designer/qdesigner_server.cpp
r651 r769 84 84 if(sSocket->waitForConnected(3000)) 85 85 { 86 foreach( QStringfile, files)86 foreach(file, files) 87 87 { 88 88 QFileInfo fi(file); … … 97 97 void QDesignerServer::readFromClient() 98 98 { 99 QString file = QString();100 99 while (m_socket->canReadLine()) { 101 file = QString::fromUtf8(m_socket->readLine());100 file = QString::fromUtf8(m_socket->readLine()); 102 101 if (!file.isNull()) { 103 102 file.remove(QLatin1Char('\n')); … … 144 143 void QDesignerClient::readFromSocket() 145 144 { 146 QString file = QString();147 145 while (m_socket->canReadLine()) { 148 146 QString file = QString::fromUtf8(m_socket->readLine()); -
trunk/tools/designer/src/designer/qdesigner_server.h
r651 r769 54 54 Q_OBJECT 55 55 public: 56 QDesignerServer(QObject *parent = 0);56 QDesignerServer(QObject *parent = 0); 57 57 virtual ~QDesignerServer(); 58 58 … … 75 75 Q_OBJECT 76 76 public: 77 QDesignerClient(quint16 port, QObject *parent = 0);77 QDesignerClient(quint16 port, QObject *parent = 0); 78 78 virtual ~QDesignerClient(); 79 79 -
trunk/tools/designer/src/designer/versiondialog.cpp
r651 r769 114 114 m_path.lineTo(me->pos()); 115 115 bool gotIt = true; 116 QPoint pt; 117 foreach(pt, hitPoints) { 116 foreach(const QPoint &pt, hitPoints) { 118 117 if (!m_path.contains(pt)) { 119 118 gotIt = false; … … 122 121 } 123 122 if (gotIt) { 124 foreach( pt, missPoints) {123 foreach(pt, missPoints) { 125 124 if (m_path.contains(pt)) { 126 125 gotIt = false; -
trunk/tools/designer/src/lib/shared/actioneditor.cpp
r651 r769 429 429 } 430 430 431 // Set an in tial property and mark it as changed in the sheet431 // Set an intial property and mark it as changed in the sheet 432 432 static void setInitialProperty(QDesignerPropertySheetExtension *sheet, const QString &name, const QVariant &value) 433 433 { -
trunk/tools/designer/src/lib/shared/actionrepository.cpp
r651 r769 78 78 } 79 79 80 static QIcon fixActionIcon(const QIcon &icon)81 {82 if (icon.isNull())83 return qdesigner_internal::emptyIcon();84 return icon;85 }86 87 80 namespace qdesigner_internal { 88 81 … … 90 83 ActionModel::ActionModel(QWidget *parent ) : 91 84 QStandardItemModel(parent), 85 92 86 m_core(0) 93 87 { … … 128 122 list += item(row, i); 129 123 130 setItems(m_core, actionOfItem(list.front()), list);124 setItems(m_core, actionOfItem(list.front()), list); 131 125 } 132 126 … … 151 145 items.push_back(item); 152 146 } 153 setItems(m_core, action, items);147 setItems(m_core, action, items); 154 148 appendRow(items); 155 149 return indexFromItem(items.front()); … … 186 180 } 187 181 188 void ActionModel::setItems(QDesignerFormEditorInterface *core, QAction *action, QStandardItemList &sl) 182 void ActionModel::setItems(QDesignerFormEditorInterface *core, QAction *action, 183 const QIcon &defaultIcon, 184 QStandardItemList &sl) 189 185 { 190 186 … … 201 197 QStandardItem *item = sl[NameColumn]; 202 198 item->setText(action->objectName()); 203 item->setIcon(fixActionIcon(action->icon())); 199 QIcon icon = action->icon(); 200 if (icon.isNull()) 201 icon = defaultIcon; 202 item->setIcon(icon); 204 203 item->setToolTip(firstTooltip); 205 204 item->setWhatsThis(firstTooltip); … … 245 244 246 245 QSet<QAction*> actions; 247 foreach (const 246 foreach (const QModelIndex &index, indexes) 248 247 if (QStandardItem *item = itemFromIndex(index)) 249 248 if (QAction *action = actionOfItem(item)) -
trunk/tools/designer/src/lib/shared/actionrepository_p.h
r651 r769 60 60 #include <QtGui/QListView> 61 61 #include <QtGui/QStackedWidget> 62 62 63 63 64 QT_BEGIN_NAMESPACE … … 111 112 112 113 private: 114 115 113 116 void initializeHeaders(); 114 115 typedef QList<QStandardItem *> QStandardItemList; 116 static void setItems(QDesignerFormEditorInterface *core, QAction *a, QStandardItemList &sl); 117 static void setItems(QDesignerFormEditorInterface *core, QAction *a, 118 const QIcon &defaultIcon, 119 QStandardItemList &sl); 120 121 const QIcon m_emptyIcon; 117 122 118 123 QDesignerFormEditorInterface *m_core; -
trunk/tools/designer/src/lib/shared/connectionedit_p.h
r651 r769 88 88 public: 89 89 enum Type { Source, Target }; 90 EndPoint(Connection *_con = 0, Type _type = Source) : con(_con), type(_type) {}90 EndPoint(Connection *_con = 0, Type _type = Source) : con(_con), type(_type) {} 91 91 bool isNull() const { return con == 0; } 92 92 bool operator == (const EndPoint &other) const { return con == other.con && type == other.type; } -
trunk/tools/designer/src/lib/shared/filterwidget_p.h
r651 r769 67 67 68 68 /* A line edit that displays a grayed hintText (like "Type Here to Filter") 69 * when not focus sed and empty. When connecting to the changed signals and69 * when not focused and empty. When connecting to the changed signals and 70 70 * querying text, one has to be aware that the text is set to that hint 71 71 * text if isShowingHintText() returns true (that is, does not contain -
trunk/tools/designer/src/lib/shared/iconloader.cpp
r651 r769 61 61 << (QString::fromUtf8(":/trolltech/formeditor/images/designer_") + name); 62 62 63 foreach ( QStringf, candidates) {63 foreach (f, candidates) { 64 64 if (QFile::exists(f)) 65 65 return QIcon(f); … … 71 71 QDESIGNER_SHARED_EXPORT QIcon emptyIcon() 72 72 { 73 static const QIcon empty_icon(QLatin1String(":/trolltech/formeditor/images/emptyicon.png")); 74 return empty_icon; 73 return QIcon(QLatin1String(":/trolltech/formeditor/images/emptyicon.png")); 75 74 } 76 75 -
trunk/tools/designer/src/lib/shared/iconselector_p.h
r651 r769 77 77 Q_OBJECT 78 78 79 LanguageResourceDialog(QDesignerResourceBrowserInterface *rb, QWidget *parent = 0);79 LanguageResourceDialog(QDesignerResourceBrowserInterface *rb, QWidget *parent = 0); 80 80 81 81 public: -
trunk/tools/designer/src/lib/shared/plugindialog.cpp
r651 r769 106 106 QFont boldFont = topLevelItem->font(0); 107 107 108 foreach ( QStringfileName, fileNames) {108 foreach (fileName, fileNames) { 109 109 QPluginLoader loader(fileName); 110 110 const QFileInfo fileInfo(fileName); … … 128 128 QTreeWidgetItem *topLevelItem = setTopLevelItem(QLatin1String("Failed Plugins")); 129 129 const QFont boldFont = topLevelItem->font(0); 130 foreach (const QString plugin, notLoadedPlugins) {130 foreach (const QString plugin, notLoadedPlugins) { 131 131 const QString failureReason = pluginManager->failureReason(plugin); 132 132 QTreeWidgetItem *pluginItem = setPluginItem(topLevelItem, plugin, boldFont); -
trunk/tools/designer/src/lib/shared/qdesigner_introspection.cpp
r651 r769 64 64 { 65 65 if (!c) 66 return QString ::null;66 return QString; 67 67 return QString::fromUtf8(c); 68 68 } -
trunk/tools/designer/src/lib/shared/qdesigner_menu.cpp
r651 r769 89 89 QDesignerMenu::QDesignerMenu(QWidget *parent) : 90 90 QMenu(parent), 91 91 92 m_currentIndex(0), 92 93 m_addItem(new SpecialMenuAction(this)), … … 557 558 QRect QDesignerMenu::subMenuPixmapRect(QAction *action) const 558 559 { 559 static const QPixmap pm(QLatin1String(":/trolltech/formeditor/images/submenu.png"));560 560 const QRect g = actionGeometry(action); 561 const int x = layoutDirection() == Qt::LeftToRight ? (g.right() - pm.width() - 2) : 2;562 const int y = g.top() + (g.height() - pm.height())/2 + 1;563 return QRect(x, y, pm.width(), pm.height());561 const int x = layoutDirection() == Qt::LeftToRight ? (g.right() - .width() - 2) : 2; 562 const int y = g.top() + (g.height() - .height())/2 + 1; 563 return QRect(x, y, .height()); 564 564 } 565 565 … … 598 598 p.fillRect(g, lg); 599 599 } else if (hasSubMenuPixmap(a)) { 600 static const QPixmap pm(QLatin1String(":/trolltech/formeditor/images/submenu.png")); 601 p.drawPixmap(subMenuPixmapRect(a).topLeft(), pm); 600 p.drawPixmap(subMenuPixmapRect(a).topLeft(), m_subMenuPixmap); 602 601 } 603 602 } -
trunk/tools/designer/src/lib/shared/qdesigner_menu_p.h
r651 r769 58 58 #include <QtGui/QAction> 59 59 #include <QtGui/QMenu> 60 60 61 #include <QtCore/QHash> 61 62 … … 184 185 bool hideSubMenuOnCursorKey(); 185 186 bool showSubMenuOnCursorKey(); 187 186 188 187 189 QPoint m_startPosition; -
trunk/tools/designer/src/lib/shared/qdesigner_objectinspector_p.h
r651 r769 86 86 Q_OBJECT 87 87 public: 88 QDesignerObjectInspector(QWidget *parent = 0, Qt::WindowFlags flags = 0);88 QDesignerObjectInspector(QWidget *parent = 0, Qt::WindowFlags flags = 0); 89 89 90 90 // Select a qobject unmanaged by form window -
trunk/tools/designer/src/lib/shared/qdesigner_promotiondialog_p.h
r651 r769 81 81 Q_OBJECT 82 82 public: 83 NewPromotedClassPanel(const QStringList &baseClasses,84 int selectedBaseClass = -1,85 QWidget *parent = 0);83 NewPromotedClassPanel(const QStringList &baseClasses, 84 int selectedBaseClass = -1, 85 QWidget *parent = 0); 86 86 87 87 signals: … … 115 115 enum Mode { ModeEdit, ModeEditChooseClass }; 116 116 117 QDesignerPromotionDialog(QDesignerFormEditorInterface *core,118 QWidget *parent = 0,119 const QString &promotableWidgetClassName = QString(),120 QString *promoteTo = 0);117 QDesignerPromotionDialog(QDesignerFormEditorInterface *core, 118 QWidget *parent = 0, 119 const QString &promotableWidgetClassName = QString(), 120 QString *promoteTo = 0); 121 121 // Return an alphabetically ordered list of base class names for adding new classes. 122 122 static const QStringList &baseClassNames(const QDesignerPromotionInterface *promotion); -
trunk/tools/designer/src/lib/shared/qdesigner_propertyeditor_p.h
r651 r769 70 70 Q_OBJECT 71 71 public: 72 QDesignerPropertyEditor(QWidget *parent = 0, Qt::WindowFlags flags = 0);72 QDesignerPropertyEditor(QWidget *parent = 0, Qt::WindowFlags flags = 0); 73 73 74 74 // A pair <ValidationMode, bool isTranslatable>. -
trunk/tools/designer/src/lib/shared/qdesigner_taskmenu.cpp
r651 r769 676 676 const QStringList parameterNames = qVariantValue<QStringList>(selectedItem->data(0, Qt::UserRole)); 677 677 678 // TODO: Check w ether signal is connected to slot678 // TODO: Check wether signal is connected to slot 679 679 integr->emitNavigateToSlot(objectName, signalSignature, parameterNames); 680 680 } -
trunk/tools/designer/src/lib/shared/qdesigner_toolbar.cpp
r651 r769 449 449 } 450 450 451 //that's a trick to get acces to the initStyleOption which is a protected member451 //that's a trick to get acces to the initStyleOption which is a protected member 452 452 class FriendlyToolBar : public QToolBar { 453 453 public: -
trunk/tools/designer/src/lib/shared/qdesigner_utils_p.h
r651 r769 299 299 Q_OBJECT 300 300 public: 301 DesignerIconCache(DesignerPixmapCache *pixmapCache, QObject *parent = 0);301 DesignerIconCache(DesignerPixmapCache *pixmapCache, QObject *parent = 0); 302 302 QIcon icon(const PropertySheetIconValue &value) const; 303 303 void clear(); … … 314 314 { 315 315 public: 316 PropertySheetStringValue(const QString &value = QString(),316 PropertySheetStringValue(const QString &value = QString(), 317 317 bool translatable = true, 318 318 const QString &disambiguation = QString(), … … 346 346 { 347 347 public: 348 PropertySheetKeySequenceValue(const QKeySequence &value = QKeySequence(),348 PropertySheetKeySequenceValue(const QKeySequence &value = QKeySequence(), 349 349 bool translatable = true, 350 350 const QString &disambiguation = QString(), 351 351 const QString &comment = QString()); 352 PropertySheetKeySequenceValue(const QKeySequence::StandardKey &standardKey,352 PropertySheetKeySequenceValue(const QKeySequence::StandardKey &standardKey, 353 353 bool translatable = true, 354 354 const QString &disambiguation = QString(), -
trunk/tools/designer/src/lib/shared/qdesigner_widgetbox_p.h
r651 r769 71 71 enum LoadMode { LoadMerge, LoadReplace, LoadCustomWidgetsOnly }; 72 72 73 QDesignerWidgetBox(QWidget *parent = 0, Qt::WindowFlags flags = 0);73 QDesignerWidgetBox(QWidget *parent = 0, Qt::WindowFlags flags = 0); 74 74 75 75 LoadMode loadMode() const; -
trunk/tools/designer/src/lib/shared/qtresourceview_p.h
r651 r769 69 69 Q_OBJECT 70 70 public: 71 QtResourceView(QDesignerFormEditorInterface *core, QWidget *parent = 0);71 QtResourceView(QDesignerFormEditorInterface *core, QWidget *parent = 0); 72 72 ~QtResourceView(); 73 73 … … 121 121 Q_OBJECT 122 122 public: 123 QtResourceViewDialog(QDesignerFormEditorInterface *core, QWidget *parent = 0);123 QtResourceViewDialog(QDesignerFormEditorInterface *core, QWidget *parent = 0); 124 124 virtual ~QtResourceViewDialog(); 125 125 -
trunk/tools/designer/src/lib/shared/richtexteditor_p.h
r651 r769 73 73 Q_OBJECT 74 74 public: 75 RichTextEditorDialog(QDesignerFormEditorInterface *core, QWidget *parent = 0);75 RichTextEditorDialog(QDesignerFormEditorInterface *core, QWidget *parent = 0); 76 76 ~RichTextEditorDialog(); 77 77 -
trunk/tools/designer/src/lib/shared/shared_settings.cpp
r651 r769 162 162 // get template paths excluding internal ones 163 163 QStringList rc = formTemplatePaths(); 164 foreach ( QStringinternalTemplatePath, defaultFormTemplatePaths()) {164 foreach (internalTemplatePath, defaultFormTemplatePaths()) { 165 165 const int index = rc.indexOf(internalTemplatePath); 166 166 if (index != -1) -
trunk/tools/designer/src/lib/shared/textpropertyeditor_p.h
r651 r769 91 91 }; 92 92 93 TextPropertyEditor(QWidget *parent = 0, EmbeddingMode embeddingMode = EmbeddingNone, TextPropertyValidationMode validationMode = ValidationMultiLine);93 TextPropertyEditor(QWidget *parent = 0, EmbeddingMode embeddingMode = EmbeddingNone, TextPropertyValidationMode validationMode = ValidationMultiLine); 94 94 95 95 TextPropertyValidationMode textPropertyValidationMode() const { return m_validationMode; } -
trunk/tools/designer/src/lib/shared/widgetdatabase_p.h
r651 r769 75 75 { 76 76 public: 77 WidgetDataBaseItem(const QString &name = QString(),78 const QString &group = QString());77 WidgetDataBaseItem(const QString &name = QString(), 78 const QString &group = QString()); 79 79 80 80 QString name() const; … … 160 160 Q_OBJECT 161 161 public: 162 WidgetDataBase(QDesignerFormEditorInterface *core, QObject *parent = 0);162 WidgetDataBase(QDesignerFormEditorInterface *core, QObject *parent = 0); 163 163 virtual ~WidgetDataBase(); 164 164 -
trunk/tools/designer/src/lib/uilib/abstractformbuilder.cpp
r651 r769 365 365 if (!zOrderNames.isEmpty()) { 366 366 QList<QWidget *> zOrder = qVariantValue<QWidgetList>(w->property("_q_zOrder")); 367 foreach ( QStringwidgetName, zOrderNames) {367 foreach (widgetName, zOrderNames) { 368 368 if (QWidget *child = qFindChild<QWidget*>(w, widgetName)) { 369 369 if (child->parentWidget() == w) { -
trunk/tools/designer/src/lib/uilib/formbuilder.cpp
r651 r769 495 495 m_customWidgets.clear(); 496 496 497 foreach ( QStringpath, m_pluginPaths) {497 foreach (path, m_pluginPaths) { 498 498 const QDir dir(path); 499 499 const QStringList candidates = dir.entryList(QDir::Files); -
trunk/tools/designer/src/plugins/activeqt/qaxwidgetextrainfo.h
r651 r769 78 78 Q_OBJECT 79 79 public: 80 QAxWidgetExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);80 QAxWidgetExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 81 81 82 82 protected: -
trunk/tools/designer/src/plugins/activeqt/qdesigneraxwidget.h
r651 r769 106 106 class QDesignerAxPluginWidget : public QDesignerAxWidget 107 107 { 108 // No Q_OBJECT here! - meta functionality is overrid en108 // No Q_OBJECT here! - meta functionality is overriden 109 109 public: 110 110 explicit QDesignerAxPluginWidget(QWidget *parent); -
trunk/tools/designer/src/plugins/widgets/q3iconview/q3iconview_extrainfo.h
r651 r769 82 82 Q_OBJECT 83 83 public: 84 Q3IconViewExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);84 Q3IconViewExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 85 85 86 86 protected: -
trunk/tools/designer/src/plugins/widgets/q3iconview/q3iconview_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3IconViewPlugin(const QIcon &icon, QObject *parent = 0);54 Q3IconViewPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3listbox/q3listbox_extrainfo.h
r651 r769 80 80 Q_OBJECT 81 81 public: 82 Q3ListBoxExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);82 Q3ListBoxExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 83 83 84 84 protected: -
trunk/tools/designer/src/plugins/widgets/q3listbox/q3listbox_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3ListBoxPlugin(const QIcon &icon, QObject *parent = 0);54 Q3ListBoxPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3listview/q3listview_extrainfo.h
r651 r769 83 83 Q_OBJECT 84 84 public: 85 Q3ListViewExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);85 Q3ListViewExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 86 86 87 87 protected: -
trunk/tools/designer/src/plugins/widgets/q3listview/q3listview_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3ListViewPlugin(const QIcon &icon, QObject *parent = 0);54 Q3ListViewPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3mainwindow/q3mainwindow_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3MainWindowPlugin(const QIcon &icon, QObject *parent = 0);54 Q3MainWindowPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3table/q3table_extrainfo.h
r651 r769 80 80 Q_OBJECT 81 81 public: 82 Q3TableExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);82 Q3TableExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 83 83 84 84 protected: -
trunk/tools/designer/src/plugins/widgets/q3table/q3table_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3TablePlugin(const QIcon &icon, QObject *parent = 0);54 Q3TablePlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3textedit/q3textedit_extrainfo.h
r651 r769 80 80 Q_OBJECT 81 81 public: 82 Q3TextEditExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);82 Q3TextEditExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 83 83 84 84 protected: -
trunk/tools/designer/src/plugins/widgets/q3textedit/q3textedit_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3TextEditPlugin(const QIcon &icon, QObject *parent = 0);54 Q3TextEditPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3toolbar/q3toolbar_extrainfo.h
r651 r769 79 79 Q_OBJECT 80 80 public: 81 Q3ToolBarExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0);81 Q3ToolBarExtraInfoFactory(QDesignerFormEditorInterface *core, QExtensionManager *parent = 0); 82 82 83 83 protected: -
trunk/tools/designer/src/plugins/widgets/q3toolbar/q3toolbar_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3ToolBarPlugin(const QIcon &icon, QObject *parent = 0);54 Q3ToolBarPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3widgets/q3widget_plugins.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3ButtonGroupPlugin(const QIcon &icon, QObject *parent = 0);54 Q3ButtonGroupPlugin(const QIcon &icon, QObject *parent = 0); 55 55 virtual ~Q3ButtonGroupPlugin(); 56 56 … … 81 81 Q_INTERFACES(QDesignerCustomWidgetInterface) 82 82 public: 83 Q3ComboBoxPlugin(const QIcon &icon, QObject *parent = 0);83 Q3ComboBoxPlugin(const QIcon &icon, QObject *parent = 0); 84 84 virtual ~Q3ComboBoxPlugin(); 85 85 … … 110 110 Q_INTERFACES(QDesignerCustomWidgetInterface) 111 111 public: 112 Q3DateEditPlugin(const QIcon &icon, QObject *parent = 0);112 Q3DateEditPlugin(const QIcon &icon, QObject *parent = 0); 113 113 114 114 virtual QString name() const; … … 134 134 Q_INTERFACES(QDesignerCustomWidgetInterface) 135 135 public: 136 Q3DateTimeEditPlugin(const QIcon &icon, QObject *parent = 0);136 Q3DateTimeEditPlugin(const QIcon &icon, QObject *parent = 0); 137 137 138 138 virtual QString name() const; … … 158 158 Q_INTERFACES(QDesignerCustomWidgetInterface) 159 159 public: 160 Q3FramePlugin(const QIcon &icon, QObject *parent = 0);160 Q3FramePlugin(const QIcon &icon, QObject *parent = 0); 161 161 virtual ~Q3FramePlugin(); 162 162 … … 187 187 Q_INTERFACES(QDesignerCustomWidgetInterface) 188 188 public: 189 Q3GroupBoxPlugin(const QIcon &icon, QObject *parent = 0);189 Q3GroupBoxPlugin(const QIcon &icon, QObject *parent = 0); 190 190 virtual ~Q3GroupBoxPlugin(); 191 191 … … 216 216 Q_INTERFACES(QDesignerCustomWidgetInterface) 217 217 public: 218 Q3ProgressBarPlugin(const QIcon &icon, QObject *parent = 0);218 Q3ProgressBarPlugin(const QIcon &icon, QObject *parent = 0); 219 219 220 220 virtual QString name() const; … … 240 240 Q_INTERFACES(QDesignerCustomWidgetInterface) 241 241 public: 242 Q3TextBrowserPlugin(const QIcon &icon, QObject *parent = 0);242 Q3TextBrowserPlugin(const QIcon &icon, QObject *parent = 0); 243 243 244 244 virtual QString name() const; … … 264 264 Q_INTERFACES(QDesignerCustomWidgetInterface) 265 265 public: 266 Q3TimeEditPlugin(const QIcon &icon, QObject *parent = 0);266 Q3TimeEditPlugin(const QIcon &icon, QObject *parent = 0); 267 267 268 268 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3widgetstack/q3widgetstack_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3WidgetStackPlugin(const QIcon &icon, QObject *parent = 0);54 Q3WidgetStackPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/plugins/widgets/q3wizard/q3wizard_container.h
r651 r769 60 60 Q_OBJECT 61 61 public: 62 Q3WizardHelper(Q3Wizard *wizard);62 Q3WizardHelper(Q3Wizard *wizard); 63 63 private slots: 64 64 void slotCurrentChanged(); … … 72 72 Q_INTERFACES(QDesignerExtraInfoExtension) 73 73 public: 74 Q3WizardExtraInfo(Q3Wizard *wizard, QDesignerFormEditorInterface *core, QObject *parent);74 Q3WizardExtraInfo(Q3Wizard *wizard, QDesignerFormEditorInterface *core, QObject *parent); 75 75 76 76 virtual QWidget *widget() const; -
trunk/tools/designer/src/plugins/widgets/q3wizard/q3wizard_plugin.h
r651 r769 52 52 Q_INTERFACES(QDesignerCustomWidgetInterface) 53 53 public: 54 Q3WizardPlugin(const QIcon &icon, QObject *parent = 0);54 Q3WizardPlugin(const QIcon &icon, QObject *parent = 0); 55 55 56 56 virtual QString name() const; -
trunk/tools/designer/src/src.pro
r561 r769 10 10 CONFIG(shared,shared|static):SUBDIRS += plugins 11 11 12 wince*: SUBDIRS -= designer plugins 13 symbian: SUBDIRS = uitools 14 contains(DEFINES, QT_NO_CURSOR): SUBDIRS -= lib components 12 symbian|wince*: SUBDIRS = uitools
Note:
See TracChangeset
for help on using the changeset viewer.