Artifact d6c33d3e646b5fb84956b726870f6df399d65501db5b0c1c227172462372e454:
- File QtWidgets/QtAction.mm — part of check-in [3ece549448] at 2017-04-15 17:18:52 on branch trunk — Make toOF/toQt more powerful and complete QtWidget (user: js, size: 5527) [annotate] [blame] [check-ins using]
- File
src/QtWidgets/QtAction.mm
— part of check-in
[baf52ea3b1]
at
2017-04-17 23:25:45
on branch trunk
— Add a proper build system
Also lowers the minimum required Qt version to 5.5. (user: js, size: 5527) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2017, Jonathan Schleifer <js@heap.zone> * * https://heap.zone/git/objqt.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #import "QtAction.h" #import "QtWidget.h" #import "OFString+QString.h" using ObjQt::toOF; using ObjQt::toQt; @implementation QtAction - initWithQObject: (QObject*)qObject { OF_INVALID_INIT_METHOD } - initWithQAction: (QAction*)qAction { return [super initWithQObject: qAction]; } - (QAction*)qAction { return qobject_cast<QAction*>(_qObject); } - (bool)autoRepeat { return toQt(self)->autoRepeat(); } - (void)setAutoRepeat: (bool)autoRepeat { toQt(self)->setAutoRepeat(autoRepeat); } - (bool)isCheckable { return toQt(self)->isCheckable(); } - (void)setCheckable: (bool)checkable { toQt(self)->setCheckable(checkable); } - (bool)isChecked { return toQt(self)->isChecked(); } - (void)setChecked: (bool)checked { toQt(self)->setChecked(checked); } - (bool)isEnabled { return toQt(self)->isEnabled(); } - (void)setEnabled: (bool)enabled { toQt(self)->setEnabled(enabled); } - (QFont)font { return toQt(self)->font(); } - (void)setFont: (QFont)font { toQt(self)->setFont(font); } - (QIcon)icon { return toQt(self)->icon(); } - (void)setIcon: (QIcon)icon { toQt(self)->setIcon(icon); } - (OFString*)iconText { return toOF(toQt(self)->iconText()); } - (void)setIconText: (OFString*)iconText { toQt(self)->setIconText(toQt(iconText)); } - (bool)isIconVisibleInMenu { return toQt(self)->isIconVisibleInMenu(); } - (void)setIconVisibleInMenu: (bool)iconVisibleInMenu { toQt(self)->setIconVisibleInMenu(iconVisibleInMenu); } - (QAction::MenuRole)menuRole { return toQt(self)->menuRole(); } - (void)setMenuRole: (QAction::MenuRole)menuRole { toQt(self)->setMenuRole(menuRole); } - (QAction::Priority)priority { return toQt(self)->priority(); } - (void)setPriority: (QAction::Priority)priority { toQt(self)->setPriority(priority); } - (QKeySequence)shortcut { return toQt(self)->shortcut(); } - (void)setShortcut: (QKeySequence)shortcut { toQt(self)->setShortcut(shortcut); } - (Qt::ShortcutContext)shortcutContext { return toQt(self)->shortcutContext(); } - (void)setShortcutContext: (Qt::ShortcutContext)shortcutContext { toQt(self)->setShortcutContext(shortcutContext); } - (OFString*)statusTip { return toOF(toQt(self)->statusTip()); } - (void)setStatusTip: (OFString*)statusTip { toQt(self)->setStatusTip(toQt(statusTip)); } - (OFString*)text { return toOF(toQt(self)->text()); } - (void)setText: (OFString*)text { toQt(self)->setText(toQt(text)); } - (OFString*)toolTip { return toOF(toQt(self)->toolTip()); } - (void)setToolTip: (OFString*)toolTip { toQt(self)->setToolTip(toQt(toolTip)); } - (bool)isVisible { return toQt(self)->isVisible(); } - (void)setVisible: (bool)visible { toQt(self)->setVisible(visible); } - (OFString*)whatsThis { return toOF(toQt(self)->whatsThis()); } - (void)setWhatsThis: (OFString*)whatsThis { toQt(self)->setWhatsThis(toQt(whatsThis)); } - (QActionGroup*)actionGroup { return toQt(self)->actionGroup(); } - (void)activate: (QAction::ActionEvent)event { toQt(self)->activate(event); } - (QList<QGraphicsWidget*>)associatedGraphicsWidgets { return toQt(self)->associatedGraphicsWidgets(); } - (OFArray OF_GENERIC(QtWidget*)*)associatedWidgets { const QList<QWidget*> &widgets = toQt(self)->associatedWidgets(); OFMutableArray *ret = [OFMutableArray arrayWithCapacity: widgets.count()]; void *pool = objc_autoreleasePoolPush(); for (QWidget *widget: widgets) [ret addObject: toOF(widget)]; [ret makeImmutable]; objc_autoreleasePoolPop(pool); return ret; } - (QVariant)data { return toQt(self)->data(); } - (bool)isSeparator { return toQt(self)->isSeparator(); } - (QMenu*)menu { return toQt(self)->menu(); } - (QtWidget*)parentWidget { return toOF(toQt(self)->parentWidget()); } - (void)setActionGroup: (QActionGroup*)group { toQt(self)->setActionGroup(group); } - (void)setData: (const QVariant&)userData { toQt(self)->setData(userData); } - (void)setMenu: (QMenu*)menu { toQt(self)->setMenu(menu); } - (void)setSeparator: (bool)isSeparator { toQt(self)->setSeparator(isSeparator); } - (void)setShortcuts: (const QList<QKeySequence>&)shortcuts { toQt(self)->setShortcuts(shortcuts); } - (void)setShortcutsWithStandardKey: (QKeySequence::StandardKey)key { toQt(self)->setShortcuts(key); } - (QList<QKeySequence>)shortcuts { return toQt(self)->shortcuts(); } - (bool)showStatusText: (QtWidget*)widget { return toQt(self)->showStatusText(toQt(widget)); } @end