-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Optional Feature to Hide Tiled Window Titles (#6)
- Loading branch information
Showing
4 changed files
with
88 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,71 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>Form</class> | ||
<widget class="QWidget" name="Form"> | ||
<!-- After creating with Qt Designer, geometry was swapped out for minimumSize --> | ||
<property name="minimumSize"> | ||
<size> | ||
<height>142</height> | ||
</size> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Form</string> | ||
</property> | ||
<widget class="QLabel" name="label_save_notice"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>10</y> | ||
<width>541</width> | ||
<height>41</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>11</pointsize> | ||
<weight>75</weight> | ||
<bold>true</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Due to a limitation of Kwin, you must disable and re-enable the script | ||
for changes to take effect.</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="label_blacklist"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>80</y> | ||
<width>301</width> | ||
<height>18</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>11</pointsize> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Window Class Blacklist (comma-separated)</string> | ||
</property> | ||
</widget> | ||
<widget class="QLineEdit" name="kcfg_blacklist"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>100</y> | ||
<width>531</width> | ||
<height>32</height> | ||
</rect> | ||
</property> | ||
</widget> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
<class>Form</class> | ||
<widget class="QWidget" name="Form"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>755</width> | ||
<height>142</height> | ||
</rect> | ||
</property> | ||
<property name="minimumSize"> | ||
<size> | ||
<width>0</width> | ||
<height>142</height> | ||
</size> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Form</string> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QLabel" name="label_save_notice"> | ||
<property name="font"> | ||
<font> | ||
<pointsize>11</pointsize> | ||
<bold>true</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Due to a limitation of Kwin, you must disable and re-enable the script for changes to take effect.</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QLabel" name="label_blacklist"> | ||
<property name="text"> | ||
<string>Window Class Blacklist (comma-separated)</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QLineEdit" name="kcfg_blacklist"/> | ||
</item> | ||
<item> | ||
<widget class="Line" name="line"> | ||
<property name="orientation"> | ||
<enum>Qt::Orientation::Horizontal</enum> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QLabel" name="label_optional"> | ||
<property name="text"> | ||
<string>Optional Features:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QCheckBox" name="kcfg_shouldHideTiled"> | ||
<property name="text"> | ||
<string>Also &hide title bar for tiled windows</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |