Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.ui

Mon, 28 Dec 2009 16:03:33 +0000

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 28 Dec 2009 16:03:33 +0000
changeset 0
de9c2efb9d02
child 3122
4bcf6c0f4432
permissions
-rw-r--r--

Started porting eric4 to Python3

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>FileDialogWizardDialog</class>
 <widget class="QDialog" name="FileDialogWizardDialog">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>557</width>
    <height>479</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>QFileDialog Wizard</string>
  </property>
  <property name="sizeGripEnabled">
   <bool>true</bool>
  </property>
  <layout class="QVBoxLayout" name="verticalLayout">
   <item>
    <widget class="QGroupBox" name="groupBox">
     <property name="title">
      <string>Type</string>
     </property>
     <layout class="QGridLayout" name="gridLayout">
      <item row="0" column="0">
       <widget class="QRadioButton" name="rOpenFile">
        <property name="toolTip">
         <string>Select to create an 'Open File' dialog</string>
        </property>
        <property name="text">
         <string>Open File</string>
        </property>
        <property name="checked">
         <bool>true</bool>
        </property>
       </widget>
      </item>
      <item row="0" column="1">
       <widget class="QRadioButton" name="rOpenFiles">
        <property name="toolTip">
         <string>Select to create an 'Open Files' dialog</string>
        </property>
        <property name="text">
         <string>Open Files</string>
        </property>
       </widget>
      </item>
      <item row="0" column="2">
       <widget class="QRadioButton" name="rSaveFile">
        <property name="toolTip">
         <string>Select to create a 'Save File' dialog</string>
        </property>
        <property name="text">
         <string>Save File</string>
        </property>
       </widget>
      </item>
      <item row="0" column="3">
       <widget class="QRadioButton" name="rDirectory">
        <property name="toolTip">
         <string>Select to create a 'Select Directory' dialog</string>
        </property>
        <property name="text">
         <string>Select Directory</string>
        </property>
       </widget>
      </item>
      <item row="1" column="0">
       <widget class="QRadioButton" name="rfOpenFile">
        <property name="toolTip">
         <string>Select to create an 'Open File' dialog capturing the selected filter</string>
        </property>
        <property name="text">
         <string>Open File and Filter</string>
        </property>
        <property name="checked">
         <bool>false</bool>
        </property>
       </widget>
      </item>
      <item row="1" column="1">
       <widget class="QRadioButton" name="rfOpenFiles">
        <property name="toolTip">
         <string>Select to create an 'Open Files' dialog capturing the selected filter</string>
        </property>
        <property name="text">
         <string>Open Files and Filter</string>
        </property>
       </widget>
      </item>
      <item row="1" column="2">
       <widget class="QRadioButton" name="rfSaveFile">
        <property name="toolTip">
         <string>Select to create a 'Save File' dialog capturing the selected filter</string>
        </property>
        <property name="text">
         <string>Save File and Filter</string>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>
   <item>
    <widget class="QLabel" name="TextLabel1">
     <property name="text">
      <string>Caption</string>
     </property>
    </widget>
   </item>
   <item>
    <widget class="QLineEdit" name="eCaption">
     <property name="toolTip">
      <string>Enter the caption text</string>
     </property>
    </widget>
   </item>
   <item>
    <widget class="QCheckBox" name="cSymlinks">
     <property name="toolTip">
      <string>Check to resolve symbolic links</string>
     </property>
     <property name="text">
      <string>Resolve Symlinks</string>
     </property>
     <property name="checked">
      <bool>true</bool>
     </property>
    </widget>
   </item>
   <item>
    <widget class="QGroupBox" name="filePropertiesGroup">
     <property name="title">
      <string>File Dialog Properties</string>
     </property>
     <layout class="QGridLayout">
      <item row="3" column="1">
       <widget class="QCheckBox" name="cFilters">
        <property name="toolTip">
         <string>Check this if the contents of the edit names a variable or variable function</string>
        </property>
        <property name="text">
         <string>Is Variable</string>
        </property>
       </widget>
      </item>
      <item row="3" column="0">
       <widget class="QLineEdit" name="eFilters">
        <property name="toolTip">
         <string>Enter the filter specifications separated by ';;'</string>
        </property>
       </widget>
      </item>
      <item row="1" column="1">
       <widget class="QCheckBox" name="cStartWith">
        <property name="toolTip">
         <string>Check this if the contents of the edit names a variable or variable function</string>
        </property>
        <property name="text">
         <string>Is Variable</string>
        </property>
       </widget>
      </item>
      <item row="1" column="0">
       <widget class="QLineEdit" name="eStartWith">
        <property name="toolTip">
         <string>Enter the working directory or a filename</string>
        </property>
       </widget>
      </item>
      <item row="2" column="0" colspan="2">
       <widget class="QLabel" name="TextLabel2">
        <property name="text">
         <string>Filters</string>
        </property>
       </widget>
      </item>
      <item row="4" column="0" colspan="2">
       <widget class="QCheckBox" name="cConfirmOverwrite">
        <property name="enabled">
         <bool>false</bool>
        </property>
        <property name="toolTip">
         <string>Select to show an overwrite confirmation dialog</string>
        </property>
        <property name="text">
         <string>Show overwrite confirmation</string>
        </property>
       </widget>
      </item>
      <item row="0" column="0" colspan="2">
       <widget class="QLabel" name="TextLabel3">
        <property name="text">
         <string>Start With / Working Directory</string>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>
   <item>
    <widget class="QGroupBox" name="dirPropertiesGroup">
     <property name="enabled">
      <bool>false</bool>
     </property>
     <property name="title">
      <string>Directory Dialog Properties</string>
     </property>
     <layout class="QGridLayout">
      <item row="1" column="0">
       <widget class="QLineEdit" name="eWorkDir">
        <property name="toolTip">
         <string>Enter the working directory</string>
        </property>
       </widget>
      </item>
      <item row="0" column="0" colspan="2">
       <widget class="QLabel" name="TextLabel4">
        <property name="text">
         <string>Working Directory</string>
        </property>
       </widget>
      </item>
      <item row="1" column="1">
       <widget class="QCheckBox" name="cWorkDir">
        <property name="toolTip">
         <string>Check this if the contents of the edit names a variable or variable function</string>
        </property>
        <property name="text">
         <string>Is Variable</string>
        </property>
       </widget>
      </item>
      <item row="2" column="0" colspan="2">
       <widget class="QCheckBox" name="cDirOnly">
        <property name="toolTip">
         <string>Check to display directories only</string>
        </property>
        <property name="text">
         <string>Show Directories Only</string>
        </property>
        <property name="checked">
         <bool>true</bool>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>
   <item>
    <widget class="QDialogButtonBox" name="buttonBox">
     <property name="orientation">
      <enum>Qt::Horizontal</enum>
     </property>
     <property name="standardButtons">
      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
     </property>
    </widget>
   </item>
  </layout>
 </widget>
 <layoutdefault spacing="6" margin="11"/>
 <pixmapfunction>qPixmapFromMimeSource</pixmapfunction>
 <tabstops>
  <tabstop>rOpenFile</tabstop>
  <tabstop>rfOpenFile</tabstop>
  <tabstop>rOpenFiles</tabstop>
  <tabstop>rfOpenFiles</tabstop>
  <tabstop>rSaveFile</tabstop>
  <tabstop>rfSaveFile</tabstop>
  <tabstop>rDirectory</tabstop>
  <tabstop>eCaption</tabstop>
  <tabstop>cSymlinks</tabstop>
  <tabstop>eStartWith</tabstop>
  <tabstop>cStartWith</tabstop>
  <tabstop>eFilters</tabstop>
  <tabstop>cFilters</tabstop>
  <tabstop>cConfirmOverwrite</tabstop>
  <tabstop>eWorkDir</tabstop>
  <tabstop>cWorkDir</tabstop>
  <tabstop>cDirOnly</tabstop>
  <tabstop>buttonBox</tabstop>
 </tabstops>
 <resources/>
 <connections>
  <connection>
   <sender>buttonBox</sender>
   <signal>accepted()</signal>
   <receiver>FileDialogWizardDialog</receiver>
   <slot>accept()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>25</x>
     <y>464</y>
    </hint>
    <hint type="destinationlabel">
     <x>24</x>
     <y>488</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>buttonBox</sender>
   <signal>rejected()</signal>
   <receiver>FileDialogWizardDialog</receiver>
   <slot>reject()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>124</x>
     <y>470</y>
    </hint>
    <hint type="destinationlabel">
     <x>124</x>
     <y>485</y>
    </hint>
   </hints>
  </connection>
 </connections>
</ui>

eric ide

mercurial