QT内置的ICON资源
QT内置的ICON资源保存在QStyle类里。
可以通过成员函数
QStyle::standardIcon
来获取。
保存的icon有:
enum QStyle::StandardPixmap
This enum describes the available standard pixmaps. A standard pixmap is a pixmap that can follow some existing GUI style or guideline.
| Constant | Value | Description |
|---|---|---|
| QStyle::SP_TitleBarMinButton | 1 | Minimize button on title bars (e.g., in QMdiSubWindow). |
| QStyle::SP_TitleBarMenuButton | 0 | Menu button on a title bar. |
| QStyle::SP_TitleBarMaxButton | 2 | Maximize button on title bars. |
| QStyle::SP_TitleBarCloseButton | 3 | Close button on title bars. |
| QStyle::SP_TitleBarNormalButton | 4 | Normal (restore) button on title bars. |
| QStyle::SP_TitleBarShadeButton | 5 | Shade button on title bars. |
| QStyle::SP_TitleBarUnshadeButton | 6 | Unshade button on title bars. |
| QStyle::SP_TitleBarContextHelpButton | 7 | The Context help button on title bars. |
| QStyle::SP_MessageBoxInformation | 9 | The "information" icon. |
| QStyle::SP_MessageBoxWarning | 10 | The "warning" icon. |
| QStyle::SP_MessageBoxCritical | 11 | The "critical" icon. |
| QStyle::SP_MessageBoxQuestion | 12 | The "question" icon. |
| QStyle::SP_DesktopIcon | 13 | The "desktop" icon. |
| QStyle::SP_TrashIcon | 14 | The "trash" icon. |
| QStyle::SP_ComputerIcon | 15 | The "My computer" icon. |
| QStyle::SP_DriveFDIcon | 16 | The floppy icon. |
| QStyle::SP_DriveHDIcon | 17 | The harddrive icon. |
| QStyle::SP_DriveCDIcon | 18 | The CD icon. |
| QStyle::SP_DriveDVDIcon | 19 | The DVD icon. |
| QStyle::SP_DriveNetIcon | 20 | The network icon. |
| QStyle::SP_DirHomeIcon | 55 | The home directory icon. |
| QStyle::SP_DirOpenIcon | 21 | The open directory icon. |
| QStyle::SP_DirClosedIcon | 22 | The closed directory icon. |
| QStyle::SP_DirIcon | 37 | The directory icon. |
| QStyle::SP_DirLinkIcon | 23 | The link to directory icon. |
| QStyle::SP_FileIcon | 24 | The file icon. |
| QStyle::SP_FileLinkIcon | 25 | The link to file icon. |
| QStyle::SP_FileDialogStart | 28 | The "start" icon in a file dialog. |
| QStyle::SP_FileDialogEnd | 29 | The "end" icon in a file dialog. |
| QStyle::SP_FileDialogToParent | 30 | The "parent directory" icon in a file dialog. |
| QStyle::SP_FileDialogNewFolder | 31 | The "create new folder" icon in a file dialog. |
| QStyle::SP_FileDialogDetailedView | 32 | The detailed view icon in a file dialog. |
| QStyle::SP_FileDialogInfoView | 33 | The file info icon in a file dialog. |
| QStyle::SP_FileDialogContentsView | 34 | The contents view icon in a file dialog. |
| QStyle::SP_FileDialogListView | 35 | The list view icon in a file dialog. |
| QStyle::SP_FileDialogBack | 36 | The back arrow in a file dialog. |
| QStyle::SP_DockWidgetCloseButton | 8 | Close button on dock windows (see also QDockWidget). |
| QStyle::SP_ToolBarHorizontalExtensionButton | 26 | Extension button for horizontal toolbars. |
| QStyle::SP_ToolBarVerticalExtensionButton | 27 | Extension button for vertical toolbars. |
| QStyle::SP_DialogOkButton | 38 | Icon for a standard OK button in a QDialogButtonBox. |
| QStyle::SP_DialogCancelButton | 39 | Icon for a standard Cancel button in a QDialogButtonBox. |
| QStyle::SP_DialogHelpButton | 40 | Icon for a standard Help button in a QDialogButtonBox. |
| QStyle::SP_DialogOpenButton | 41 | Icon for a standard Open button in a QDialogButtonBox. |
| QStyle::SP_DialogSaveButton | 42 | Icon for a standard Save button in a QDialogButtonBox. |
| QStyle::SP_DialogCloseButton | 43 | Icon for a standard Close button in a QDialogButtonBox. |
| QStyle::SP_DialogApplyButton | 44 | Icon for a standard Apply button in a QDialogButtonBox. |
| QStyle::SP_DialogResetButton | 45 | Icon for a standard Reset button in a QDialogButtonBox. |
| QStyle::SP_DialogDiscardButton | 46 | Icon for a standard Discard button in a QDialogButtonBox. |
| QStyle::SP_DialogYesButton | 47 | Icon for a standard Yes button in a QDialogButtonBox. |
| QStyle::SP_DialogNoButton | 48 | Icon for a standard No button in a QDialogButtonBox. |
| QStyle::SP_ArrowUp | 49 | Icon arrow pointing up. |
| QStyle::SP_ArrowDown | 50 | Icon arrow pointing down. |
| QStyle::SP_ArrowLeft | 51 | Icon arrow pointing left. |
| QStyle::SP_ArrowRight | 52 | Icon arrow pointing right. |
| QStyle::SP_ArrowBack | 53 | Equivalent to SP_ArrowLeft when the current layout direction isQt::LeftToRight, otherwise SP_ArrowRight. |
| QStyle::SP_ArrowForward | 54 | Equivalent to SP_ArrowRight when the current layout direction isQt::LeftToRight, otherwise SP_ArrowLeft. |
| QStyle::SP_CommandLink | 56 | Icon used to indicate a Vista style command link glyph. |
| QStyle::SP_VistaShield | 57 | Icon used to indicate UAC prompts on Windows Vista. This will return a null pixmap or icon on all other platforms. |
| QStyle::SP_BrowserReload | 58 | Icon indicating that the current page should be reloaded. |
| QStyle::SP_BrowserStop | 59 | Icon indicating that the page loading should stop. |
| QStyle::SP_MediaPlay | 60 | Icon indicating that media should begin playback. |
| QStyle::SP_MediaStop | 61 | Icon indicating that media should stop playback. |
| QStyle::SP_MediaPause | 62 | Icon indicating that media should pause playback. |
| QStyle::SP_MediaSkipForward | 63 | Icon indicating that media should skip forward. |
| QStyle::SP_MediaSkipBackward | 64 | Icon indicating that media should skip backward. |
| QStyle::SP_MediaSeekForward | 65 | Icon indicating that media should seek forward. |
| QStyle::SP_MediaSeekBackward | 66 | Icon indicating that media should seek backward. |
| QStyle::SP_MediaVolume | 67 | Icon indicating a volume control. |
| QStyle::SP_MediaVolumeMuted | 68 | Icon indicating a muted volume control. |
| QStyle::SP_CustomBase | 0xf0000000 | Base value for custom standard pixmaps; custom values must be greater than this value. |
http://doc.qt.io/qt-4.8/qstyle.html
QT内置的ICON资源的更多相关文章
- Qt给应用程序添加版本信息(对rc文件的设置,可利用QT内置变量)
作者:daodaoliang 时间:2016年7月11日16:12:09 版本:V 0.0.4 邮箱:daodaoliang@yeah.net 0. 环境说明 系统环境: win10 64位 Qt环境 ...
- qt 内置图标使用
QToolButton *button = new QToolButton(this); button->resize(100,30); button->setToolButtonStyl ...
- Spring-Boot 内置静态资源文件地址修改
Spring-Boot 内置MVC静态文件地址修改 Why:1.Spring-Boot修改内置SpringMVC静态资源路径,提高项目目录结构的安全性.2.配置拦截路径时可以剔除静态文件拦截How:1 ...
- 解决GDB输出Qt内置类型的显示问题
自从GDB 7.0之后,就加入了Pretty-Printer的这个概念.简单理解就是他可以让你用Python写一串脚本,然后让gdb去读取这串脚本后,可以自由的输出由你想自己定义的格式.我们直接举个简 ...
- springboot(八)内置SpringMvc静态文件地址修改
参考:作者:恒宇少年链接:https://www.jianshu.com/p/c6ab1081fd5f 介绍: SpringMVC大家都不陌生,而被SpringBoot集成的SpringMVC除了 ...
- Android 打造自己的个性化应用(二):应用程序内置资源实现换肤功能
通过应用程序内置资源实现换肤,典型的应用为QQ空间中换肤的实现. 应用场景为: 应用一般不大,且页面较少,风格相对简单,一般只用实现部分资源或者只用实现背景的更换. 此种换肤方式实现的思路: 1. 把 ...
- 资源 之 4.2 内置Resource实现(拾)
4.2 内置Resource实现 4.2.1 ByteArrayResource ByteArrayResource代表byte[]数组资源,对于"getInputStream" ...
- 开涛spring3(4.2) - 资源 之 4.2 内置Resource实现
4.2 内置Resource实现 4.2.1 ByteArrayResource ByteArrayResource代表byte[]数组资源,对于“getInputStream”操作将返回一个By ...
- wpf中内置资源文件
wpf中包含三种文件类型 资源文件:编译到可执行或库 WPF 程序集中的数据文件. 内容文件:与可执行 WPF 程序集具有显式关联的独立数据文件. 源站点文件:与可执行 WPF 程序集没有关联的独立数 ...
随机推荐
- PureMVC(JS版)源码解析(一):观察者模式解析
假设一种情景,在程序开发中,我们需要在某些数据变化时,其他的类做出相应,例如在游戏中,升级一件装备,会触发玩家金币数量改变,背包数据改变和冷却队列数据改变等等.我们不可能设置setInte ...
- WTL的核心机制
WTL背景介绍 WTL是微软ATL开发组成员Nenad Stefanovic先生在ATL Windowing机制上发展起来的一整套GUI框架,运用template技术组织和创建GUI对象,构筑了精致的 ...
- 在命令行中如何访问Program Files文件夹(转)
通常来说Program Files文件夹位于C盘,也就是C:\Program File.为了保证兼容性,在命令行中通常使用环境变量%ProgramFiles%来表示Program Files的具体路径 ...
- Python实战:Python爬虫学习教程,获取电影排行榜
Python应用现在如火如荼,应用范围很广.因其效率高开发迅速的优势,快速进入编程语言排行榜前几名.本系列文章致力于可以全面系统的介绍Python语言开发知识和相关知识总结.希望大家能够快速入门并学习 ...
- Call to undefined function curl_init()解决方法
今天在使用php中的 curl 扩展时 在开启
- angularJs 使用中遇到的问题小结【二:购物车引起的问题思考】
问题描述 :购物车引起的问题思考 业务逻辑是这样的:我商品加入购物车后,——>点击购物车图标——>进入订单列表(这里的数据只有首次会加载服务器数据,后面就不会执行控制器的方法了,这里的跳转 ...
- (转)Asp.net的HttpCookie写入汉字读取时为乱...
今天有个问我:在Asp.net的HttpCookie中写入汉字,读取值为什么全是乱码?其实这是因为文字编码而造成的,汉字是两个编码,所以才会搞出这么个乱码出来!其实解决的方法很简单:只要在写入Cook ...
- asp.net <%%> <%#%><%=%><%@%><%$%>用法与区别
1.<% %>用来绑定后台代码 如: < % for(int i=0;i<100;i++) { Reaponse.Write(i.ToString()); } %> 2. ...
- rac中 kull session会话脚本
方法:ALTER SYSTEM KILL SESSION '80, 6, @2'; --<= 80 sid,6 serial#,@2 inst_id kill session 脚本如下:sel ...
- Linux使用fdisk进行磁盘管理
Fdisk分区工具1. Overview*Fdisk是IBM的老牌分区工具,支持绝大多数操作系统,几乎所有的Linux操作系统都默认装有fdisk:包括在Linux Rescue模式下 ...