mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Added tooltips for all QToolButtons. RDSplitter checks for valid index.
handleDoubleClicked in RDSplitter checks if the index argument is less than zero or bigger than count
This commit is contained in:
committed by
Baldur Karlsson
parent
74ffa0ef87
commit
6e06eb5164
@@ -158,6 +158,9 @@ RDSplitter::RDSplitter(QWidget *parent) : QSplitter(parent)
|
||||
|
||||
void RDSplitter::handleDoubleClicked(int index)
|
||||
{
|
||||
if(index < 0 || index >= count())
|
||||
return;
|
||||
|
||||
RDSplitterHandle *rdHandle = (RDSplitterHandle *)handle(index);
|
||||
QList<int> totalSizes = sizes();
|
||||
if(totalSizes[index] > 0)
|
||||
|
||||
@@ -172,6 +172,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Configure Camera</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../Resources/resources.qrc">
|
||||
<normaloff>:/cog.png</normaloff>:/cog.png</iconset>
|
||||
@@ -192,6 +195,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Reset Camera Position</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -209,6 +215,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Fit Camera to Geometry</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -262,6 +271,9 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Wireframe</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Wireframe</string>
|
||||
</property>
|
||||
@@ -290,6 +302,9 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Highlight Vertices</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Highlight Vertices</string>
|
||||
</property>
|
||||
@@ -621,6 +636,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Export to CSV or raw bytes</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../Resources/resources.qrc">
|
||||
<normaloff>:/save.png</normaloff>:/save.png</iconset>
|
||||
@@ -644,6 +662,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Sync Views</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Sync Views</string>
|
||||
</property>
|
||||
|
||||
@@ -58,10 +58,16 @@
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Browse for an executable file</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
<widget class="QToolButton" name="exePathBrowse">
|
||||
<property name="toolTip">
|
||||
<string>Browse for an executable file</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
@@ -69,6 +75,9 @@
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="workDirLabel">
|
||||
<property name="toolTip">
|
||||
<string>Browse for a working directory</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Working Directory</string>
|
||||
</property>
|
||||
@@ -76,6 +85,9 @@
|
||||
</item>
|
||||
<item row="1" column="3">
|
||||
<widget class="QToolButton" name="workDirBrowse">
|
||||
<property name="toolTip">
|
||||
<string>Browse for a working directory</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
@@ -83,6 +95,9 @@
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="cmdLineLabel">
|
||||
<property name="toolTip">
|
||||
<string>The command-line that will be passed to the executable on launch</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Command-line Arguments</string>
|
||||
</property>
|
||||
@@ -90,6 +105,9 @@
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="envVarLabel">
|
||||
<property name="toolTip">
|
||||
<string>The environment variables for the executable</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Environment Variables</string>
|
||||
</property>
|
||||
@@ -97,6 +115,9 @@
|
||||
</item>
|
||||
<item row="3" column="3">
|
||||
<widget class="QToolButton" name="envVarEdit">
|
||||
<property name="toolTip">
|
||||
<string>The environment variables for the executable</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
@@ -104,6 +125,9 @@
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="exePathLabel">
|
||||
<property name="toolTip">
|
||||
<string>Browse for an executable file</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Executable Path</string>
|
||||
</property>
|
||||
@@ -117,6 +141,9 @@
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Browse for a working directory</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2" colspan="2">
|
||||
@@ -127,10 +154,16 @@
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>The command-line that will be passed to the executable on launch</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="2">
|
||||
<widget class="QLineEdit" name="envVar">
|
||||
<property name="toolTip">
|
||||
<string>The environment variables for the executable</string>
|
||||
</property>
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
@@ -322,6 +355,9 @@ Click here to set up Vulkan capture.</string>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="AllowFullscreen">
|
||||
<property name="toolTip">
|
||||
<string>Allows the application to switch to full-screen mode</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Allow Fullscreen</string>
|
||||
</property>
|
||||
@@ -329,6 +365,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="AllowVSync">
|
||||
<property name="toolTip">
|
||||
<string>Allows the application to enable v-sync</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Allow VSync</string>
|
||||
</property>
|
||||
@@ -378,6 +417,9 @@ Click here to set up Vulkan capture.</string>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Pauses for N seconds after launching the process, to allow a debugger to attach</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string comment="seconds"> secs</string>
|
||||
</property>
|
||||
@@ -400,6 +442,9 @@ Click here to set up Vulkan capture.</string>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Pauses for N seconds after launching the process, to allow a debugger to attach</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Debugger Delay</string>
|
||||
</property>
|
||||
@@ -410,6 +455,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="CaptureCallstacks">
|
||||
<property name="toolTip">
|
||||
<string>Collect a callstack on every API call</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Collect Callstacks</string>
|
||||
</property>
|
||||
@@ -417,6 +465,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="CaptureCallstacksOnlyDraws">
|
||||
<property name="toolTip">
|
||||
<string>Only collect callstacks on 'drawcall' level api calls</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Only Drawcall stacks</string>
|
||||
</property>
|
||||
@@ -424,6 +475,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="APIValidation">
|
||||
<property name="toolTip">
|
||||
<string>Initialise the graphics API with built-in validation enabled - allows capturing and reading of errors and warnings generated by the API's own debugging system</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Enable API Validation</string>
|
||||
</property>
|
||||
@@ -431,6 +485,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="HookIntoChildren">
|
||||
<property name="toolTip">
|
||||
<string>Hook into child processes - useful with launchers or similar intermediate processes</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Hook into Children</string>
|
||||
</property>
|
||||
@@ -438,6 +495,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="SaveAllInitials">
|
||||
<property name="toolTip">
|
||||
<string>Save the initial API state of all API resources at the start of each captured frame</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Save all Initials</string>
|
||||
</property>
|
||||
@@ -445,6 +505,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="RefAllResources">
|
||||
<property name="toolTip">
|
||||
<string>Consider all resources to be included, even if unsued in the capture frame</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Ref all Resources</string>
|
||||
</property>
|
||||
@@ -452,6 +515,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="CaptureAllCmdLists">
|
||||
<property name="toolTip">
|
||||
<string>When enabled, all deferred command lists will be saved even while idling. This has an overhead but ensures if you hold onto a list it will be captured.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Capture all Cmd Lists</string>
|
||||
</property>
|
||||
@@ -466,6 +532,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="AutoStart">
|
||||
<property name="toolTip">
|
||||
<string>If these capture settings are saved & run, auto start the capture instantly on load</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Auto Start</string>
|
||||
</property>
|
||||
@@ -630,6 +699,9 @@ Click here to set up Vulkan capture.</string>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QPushButton" name="saveSettings">
|
||||
<property name="toolTip">
|
||||
<string>Save these capture settings to file to load later</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Save</string>
|
||||
</property>
|
||||
@@ -643,6 +715,9 @@ Click here to set up Vulkan capture.</string>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Load a saved set of capture settings</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Load</string>
|
||||
</property>
|
||||
@@ -666,6 +741,9 @@ Click here to set up Vulkan capture.</string>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="launch">
|
||||
<property name="toolTip">
|
||||
<string>Launch the selected program with RenderDoc enabled for capture</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Launch</string>
|
||||
</property>
|
||||
|
||||
@@ -71,6 +71,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="stepPrev">
|
||||
<property name="toolTip">
|
||||
<string>Go to Previous Drawcall</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../Resources/resources.qrc">
|
||||
<normaloff>:/back.png</normaloff>:/back.png</iconset>
|
||||
@@ -82,6 +85,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="stepNext">
|
||||
<property name="toolTip">
|
||||
<string>Go to Next Drawcall</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../Resources/resources.qrc">
|
||||
<normaloff>:/forward.png</normaloff>:/forward.png</iconset>
|
||||
@@ -100,6 +106,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="find">
|
||||
<property name="toolTip">
|
||||
<string>Find event by string</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -120,6 +129,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="gotoEID">
|
||||
<property name="toolTip">
|
||||
<string>Jump to an Event by EID</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -134,6 +146,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="timeDraws">
|
||||
<property name="toolTip">
|
||||
<string>Time durations for the drawcalls</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -148,6 +163,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="bookmark">
|
||||
<property name="toolTip">
|
||||
<string>Toggle Bookmark</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
||||
@@ -69,6 +69,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showDisabled">
|
||||
<property name="toolTip">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
@@ -89,6 +92,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showEmpty">
|
||||
<property name="toolTip">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
@@ -109,6 +115,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="exportHTML">
|
||||
<property name="toolTip">
|
||||
<string>Export the current pipeline state to an HTML file</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Export</string>
|
||||
</property>
|
||||
@@ -473,6 +482,9 @@
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QToolButton" name="meshView">
|
||||
<property name="toolTip">
|
||||
<string>View the mesh input data</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
||||
@@ -69,6 +69,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showDisabled">
|
||||
<property name="toolTip">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
@@ -89,6 +92,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showEmpty">
|
||||
<property name="toolTip">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
@@ -109,6 +115,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="exportHTML">
|
||||
<property name="toolTip">
|
||||
<string>Export the current pipeline state to an HTML file</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Export</string>
|
||||
</property>
|
||||
@@ -488,6 +497,9 @@
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QToolButton" name="meshView">
|
||||
<property name="toolTip">
|
||||
<string>View the mesh input data</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
||||
@@ -69,6 +69,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showDisabled">
|
||||
<property name="toolTip">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
@@ -89,6 +92,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showEmpty">
|
||||
<property name="toolTip">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
@@ -109,6 +115,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="exportHTML">
|
||||
<property name="toolTip">
|
||||
<string>Export the current pipeline state to an HTML file</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Export</string>
|
||||
</property>
|
||||
@@ -413,6 +422,9 @@
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QToolButton" name="meshView">
|
||||
<property name="toolTip">
|
||||
<string>View the mesh input data</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
||||
@@ -69,6 +69,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showDisabled">
|
||||
<property name="toolTip">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Disabled Items</string>
|
||||
</property>
|
||||
@@ -89,6 +92,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="showEmpty">
|
||||
<property name="toolTip">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Empty Items</string>
|
||||
</property>
|
||||
@@ -109,6 +115,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="exportHTML">
|
||||
<property name="toolTip">
|
||||
<string>Export the current pipeline state to an HTML file</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Export</string>
|
||||
</property>
|
||||
@@ -413,6 +422,9 @@
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QToolButton" name="meshView">
|
||||
<property name="toolTip">
|
||||
<string>View the mesh input data</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
||||
@@ -138,6 +138,9 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Zoom the visible range controls to the current black and white points</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -158,6 +161,9 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Automatically fit the black and white points of the range to the minimum and maximum values contained in the texture</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -178,6 +184,9 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Reset to [0, 1]</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
@@ -198,6 +207,9 @@
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Show a histogram with the distribution of values on top of the visible range</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
@@ -317,6 +329,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Reset the zoom to 100%</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>1:1</string>
|
||||
</property>
|
||||
@@ -339,6 +354,9 @@
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Fit the current texture to the window</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Fit</string>
|
||||
</property>
|
||||
@@ -378,6 +396,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="flip_y">
|
||||
<property name="toolTip">
|
||||
<string>Flip the texture in the Y axis</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -441,6 +462,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="saveTex">
|
||||
<property name="toolTip">
|
||||
<string>Save selected Texture</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -455,6 +479,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="texListShow">
|
||||
<property name="toolTip">
|
||||
<string>Open Texture List</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -469,6 +496,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="viewTexBuffer">
|
||||
<property name="toolTip">
|
||||
<string>Open the texture contents in a raw buffer viewer</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -483,6 +513,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="locationGoto">
|
||||
<property name="toolTip">
|
||||
<string>Enter co-ordinates to select a specific pixel location</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -656,6 +689,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="channelRed">
|
||||
<property name="toolTip">
|
||||
<string>Show Red (Right click to toggle solo)</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>R</string>
|
||||
</property>
|
||||
@@ -672,6 +708,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="channelGreen">
|
||||
<property name="toolTip">
|
||||
<string>Show Green (Right click to toggle solo)</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>G</string>
|
||||
</property>
|
||||
@@ -688,6 +727,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="channelBlue">
|
||||
<property name="toolTip">
|
||||
<string>Show Blue (Right click to toggle solo)</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>B</string>
|
||||
</property>
|
||||
@@ -707,6 +749,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="channelAlpha">
|
||||
<property name="toolTip">
|
||||
<string>Show Alpha (Right click to toggle solo)</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>A</string>
|
||||
</property>
|
||||
@@ -795,6 +840,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="customCreate">
|
||||
<property name="toolTip">
|
||||
<string>Create New Custom Shader</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -809,6 +857,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="customEdit">
|
||||
<property name="toolTip">
|
||||
<string>Edit Selected Shader</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -823,6 +874,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="customDelete">
|
||||
<property name="toolTip">
|
||||
<string>Delete Custom Shader</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -837,6 +891,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="backcolorPick">
|
||||
<property name="toolTip">
|
||||
<string>Alpha: Pick Solid Background Color</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -854,6 +911,9 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="checkerBack">
|
||||
<property name="toolTip">
|
||||
<string>Alpha: Show Checkerboard Background</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
@@ -887,6 +947,11 @@
|
||||
<height>22</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Override display of linear data in gamma space
|
||||
|
||||
See FAQ on "Gamma display of linear data"</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>γ</string>
|
||||
</property>
|
||||
|
||||
Reference in New Issue
Block a user