Overview
Comment: | Make more things properties |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ddbc7922c5268061e603032e4cdeb551 |
User & Date: | js on 2017-11-19 15:05:11 |
Other Links: | manifest | tags |
Context
2017-11-20
| ||
01:13 | Add QtGraphicsWidget check-in: 4c1be2eafb user: js tags: trunk | |
2017-11-19
| ||
15:05 | Make more things properties check-in: ddbc7922c5 user: js tags: trunk | |
2017-07-23
| ||
12:15 | Adjust to ObjFW changes check-in: 142cffefb2 user: js tags: trunk | |
Changes
Modified src/QtCore/QtObject.h from [054b094c22] to [a05ce1afd4].
︙ | |||
33 34 35 36 37 38 39 | 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 | - - + + + + + + - - | { QObject *_qObject; bool _ownsObject; } @property (readonly, nonatomic) QObject *qObject; @property (readonly, nonatomic) const QMetaObject *metaObject; |
︙ | |||
74 75 76 77 78 79 80 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - | - (QVariant)propertyForName: (OFString *)name; - (void)removeEventFilter: (QtObject *)obj; - (bool)setProperty: (QVariant&)value forName: (OFString *)name; - (bool)signalsBlocked; - (int)startTimerWithInterval: (int)interval type: (Qt::TimerType)type; |
︙ |
Modified src/QtGui/QtGUIApplication.h from [205e5d23cc] to [a966c37426].
︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | + + - - | @property (nonatomic, copy) OFString *desktopFileName; #endif @property (nonatomic) Qt::LayoutDirection layoutDirection; @property (readonly, nonatomic) OFString *platformName; @property (readonly, nonatomic) QScreen *primaryScreen; @property (nonatomic) bool quitsOnLastWindowClosed; @property (nonatomic) QIcon windowIcon; @property (readonly, nonatomic) OFString *sessionID; @property (readonly, nonatomic) OFString *sessionKey; - initWithQCoreApplication: (QCoreApplication *)qCoreApplication OF_UNAVAILABLE; - initWithQGuiApplication: (QGuiApplication *)qGuiApplication OF_DESIGNATED_INITIALIZER; - (double)devicePixelRatio; - (bool)isSavingSession; - (bool)isSessionRestored; |
︙ |
Modified src/QtGui/QtPaintDevice.h from [8609205557] to [633824ebd6].
︙ | |||
21 22 23 24 25 26 27 | 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 | - - - - + + + + - + - - - - - - - - - - + + + + + + + + + + | */ #import <ObjFW/ObjFW.h> #include <QPaintDevice> @protocol QtPaintDevice |
︙ |
Modified src/QtWidgets/QtAbstractButton.h from [4bfce82261] to [37773e2710].
︙ | |||
33 34 35 36 37 38 39 40 41 42 43 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | + - | @property (nonatomic, getter=isCheckable) bool checkable; @property (nonatomic, getter=isChecked) bool checked; @property (nonatomic, getter=isDown) bool down; @property (nonatomic) QIcon icon; @property (nonatomic) of_dimension_t iconSize; @property (nonatomic) QKeySequence shortcut; @property (nonatomic, copy) OFString *text; @property (readonly, nonatomic) QButtonGroup *group; - initWithQWidget: (QWidget *)qWidget OF_UNAVAILABLE; - initWithQAbstractButton: (QAbstractButton *)qAbstractButton OF_DESIGNATED_INITIALIZER; |
︙ |
Modified src/QtWidgets/QtAction.h from [7e60480e14] to [774a285c94].
︙ | |||
36 37 38 39 40 41 42 | 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 | - - - + + + - + + + + + - - - - + - - - + | @property (nonatomic) QIcon icon; @property (nonatomic, copy) OFString *iconText; @property (nonatomic, getter=isIconVisibleInMenu) bool iconVisibleInMenu; @property (nonatomic) QAction::MenuRole menuRole; @property (nonatomic) QAction::Priority priority; @property (nonatomic) QKeySequence shortcut; @property (nonatomic) Qt::ShortcutContext shortcutContext; |
︙ |
Modified src/QtWidgets/QtWidget.h from [b33956c62e] to [cadc7c9183].
︙ | |||
26 27 28 29 30 31 32 | 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 | - - + + - + - - - + + + - + - + + + + + + + + + + + + + - - - - | #include <QWidget> @class QtAction; @interface QtWidget: QtObject @property (readonly, nonatomic) QWidget *qWidget; @property (nonatomic) bool acceptDrops; |
︙ | |||
128 129 130 131 132 133 134 | 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 | - - - - - - | - (QVariant)queryInputMethod: (Qt::InputMethodQuery)query; - (void)insertAction: (QtAction *)action before: (QtAction *)before; - (void)insertActions: (OFArray OF_GENERIC(QtAction *) *)actions before: (QtAction *)before; - (bool)isAncestorOf: (QtWidget *)child; - (bool)isEnabledTo: (QtWidget *)ancestor; |
︙ | |||
174 175 176 177 178 179 180 181 182 183 184 185 186 | 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | + - | - (void)scrollRight: (int)dx down: (int)dy; - (void)scrollRight: (int)dx down: (int)dy inRectangle: (of_rectangle_t)rect; - (void)setAttribute: (Qt::WidgetAttribute)attribute to: (bool)on; - (void)setFocus: (Qt::FocusReason)reason; #ifdef QT_KEYPAD_NAVIGATION - (void)setEditFocus: (bool)enable; #endif - (void)setFixedHeight: (int)height; - (void)setFixedSize: (of_dimension_t)size; - (void)setFixedWidth: (int)width; |
︙ | |||
210 211 212 213 214 215 216 | 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | - - | - (void)unsetLayoutDirection; - (void)unsetLocale; - (void)updateInRectangle: (of_rectangle_t)rect; - (void)updateInRegion: (const QRegion &)region; - (void)updateGeometry; - (QRegion)visibleRegion; - (WId)winID; |
︙ |