1

在我的项目中,我显示了一个QMenu带有几个对象的QAction对象。QAction当用户将鼠标悬停在图标上时,我希望图标发生变化。

这是我当前的代码:

QPixmap icons(":/icons/platformIcons.png");

QIcon icon;
icon.addPixmap(icons.copy(0, 0, 16, 16), QIcon::Selected, QIcon::On);
icon.addPixmap(icons.copy(0, 16, 16, 16), QIcon::Selected, QIcon::Off);

ui->actionOpen->setIcon(icon);

但是,当用户将鼠标悬停在QAction. 我试过模式NormalActive结果是一样的。如果我切换状态,则图标会反转,但在悬停时仍不会更改(或单击即可)。

谢谢你的时间。

4

1 回答 1

1

对悬停在菜单和工具栏中的普通/活动图标的支持似乎取决于平台样式,尤其是本机 Mac 样式不支持,即使禁用本机菜单栏的使用(即让菜单显示在顶部)桌面而不是应用程序窗口内)。

我在 Mac 上使用 Qt Designer 表单快速尝试了复制您的用例(基本上最终使用相同的 C++ 代码QIcon::addPixmap()):

?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>400</width>
    <height>300</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>MainWindow</string>
  </property>
  <widget class="QWidget" name="centralWidget"/>
  <widget class="QMenuBar" name="menuBar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>400</width>
     <height>22</height>
    </rect>
   </property>
   <property name="nativeMenuBar">
    <bool>false</bool>
   </property>
   <widget class="QMenu" name="menuYo">
    <property name="title">
     <string>Yo</string>
    </property>
    <addaction name="actionFoo"/>
    <addaction name="actionBar"/>
   </widget>
   <addaction name="menuYo"/>
  </widget>
  <widget class="QToolBar" name="mainToolBar">
   <attribute name="toolBarArea">
    <enum>TopToolBarArea</enum>
   </attribute>
   <attribute name="toolBarBreak">
    <bool>false</bool>
   </attribute>
   <addaction name="actionFoo"/>
   <addaction name="actionBar"/>
  </widget>
  <widget class="QStatusBar" name="statusBar"/>
  <action name="actionFoo">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset>
     <normaloff>../red-circle.png</normaloff>
     <normalon>../greeb-circle.png</normalon>
     <activeoff>../red-square.png</activeoff>
     <activeon>../green-square.png</activeon>../red-circle.png</iconset>
   </property>
   <property name="text">
    <string>Foo</string>
   </property>
  </action>
  <action name="actionBar">
   <property name="text">
    <string>Bar</string>
   </property>
  </action>
 </widget>
 <layoutdefault spacing="6" margin="11"/>
 <resources/>
 <connections/>
</ui>

使用默认的 Mac 样式时,即使在鼠标悬停时,我也只会在菜单和工具栏中看到红色/绿色圆圈图标。但是,如果我强制使用另一种样式,例如ui->menuYo->setStyle(QStyleFactory::create("fusion"));然后悬停工作,但菜单看起来不再是原生的......

于 2016-12-22T07:48:27.987 回答