-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from tam1m/main
adds the possibility to allow or deny certain windows from being affected by the positioning scripts [closes #14]
- Loading branch information
Showing
12 changed files
with
349 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 | ||
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > | ||
<kcfgfile name=""/> | ||
<group name=""> | ||
<entry name="classlist" type="String"> | ||
<label>Effected window class names</label> | ||
<default></default> | ||
</entry> | ||
<entry name="allowmode" type="Bool"> | ||
<default>false</default> | ||
</entry> | ||
<entry name="denymode" type="Bool"> | ||
<default>true</default> | ||
</entry> | ||
<entry name="debugMode" type="Bool"> | ||
<label>Whether to log debug information</label> | ||
<default>false</default> | ||
</entry> | ||
</group> | ||
</kcfg> |
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>AlwaysOpenOnActiveScreenConfigForm</class> | ||
<widget class="QWidget" name="AlwaysOpenOnActiveScreenConfigForm"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>400</width> | ||
<height>451</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Form</string> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QLabel" name="label"> | ||
<property name="whatsThis"> | ||
<string notr="true">Effected window class names. One per line</string> | ||
</property> | ||
<property name="text"> | ||
<string notr="true">Effected window class names. One per line</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPlainTextEdit" name="kcfg_classlist"/> | ||
</item> | ||
<item> | ||
<widget class="QSplitter" name="splitter"> | ||
<property name="sizePolicy"> | ||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred"> | ||
<horstretch>0</horstretch> | ||
<verstretch>0</verstretch> | ||
</sizepolicy> | ||
</property> | ||
<property name="orientation"> | ||
<enum>Qt::Horizontal</enum> | ||
</property> | ||
<widget class="QRadioButton" name="kcfg_allowmode"> | ||
<property name="text"> | ||
<string notr="true">Allow matching windows</string> | ||
</property> | ||
<attribute name="buttonGroup"> | ||
<string notr="true">matchTypeGroup</string> | ||
</attribute> | ||
</widget> | ||
<widget class="QRadioButton" name="kcfg_denymode"> | ||
<property name="text"> | ||
<string notr="true">Deny matching windows</string> | ||
</property> | ||
<attribute name="buttonGroup"> | ||
<string notr="true">matchTypeGroup</string> | ||
</attribute> | ||
</widget> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QCheckBox" name="kcfg_debugMode"> | ||
<property name="text"> | ||
<string notr="true">DebugMode</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
<buttongroups> | ||
<buttongroup name="matchTypeGroup"/> | ||
</buttongroups> | ||
</ui> |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 | ||
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > | ||
<kcfgfile name=""/> | ||
<group name=""> | ||
<entry name="classlist" type="String"> | ||
<label>Effected window class names</label> | ||
<default></default> | ||
</entry> | ||
<entry name="allowmode" type="Bool"> | ||
<default>false</default> | ||
</entry> | ||
<entry name="denymode" type="Bool"> | ||
<default>true</default> | ||
</entry> | ||
<entry name="debugMode" type="Bool"> | ||
<label>Whether to log debug information</label> | ||
<default>false</default> | ||
</entry> | ||
</group> | ||
</kcfg> |
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>AlwaysOpenOnFocusedScreenConfigForm</class> | ||
<widget class="QWidget" name="AlwaysOpenOnFocusedScreenConfigForm"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>400</width> | ||
<height>451</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Form</string> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QLabel" name="label"> | ||
<property name="whatsThis"> | ||
<string notr="true">Effected window class names. One per line</string> | ||
</property> | ||
<property name="text"> | ||
<string notr="true">Effected window class names. One per line</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPlainTextEdit" name="kcfg_classlist"/> | ||
</item> | ||
<item> | ||
<widget class="QSplitter" name="splitter"> | ||
<property name="sizePolicy"> | ||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred"> | ||
<horstretch>0</horstretch> | ||
<verstretch>0</verstretch> | ||
</sizepolicy> | ||
</property> | ||
<property name="orientation"> | ||
<enum>Qt::Horizontal</enum> | ||
</property> | ||
<widget class="QRadioButton" name="kcfg_allowmode"> | ||
<property name="text"> | ||
<string notr="true">Allow matching windows</string> | ||
</property> | ||
<attribute name="buttonGroup"> | ||
<string notr="true">matchTypeGroup</string> | ||
</attribute> | ||
</widget> | ||
<widget class="QRadioButton" name="kcfg_denymode"> | ||
<property name="text"> | ||
<string notr="true">Deny matching windows</string> | ||
</property> | ||
<attribute name="buttonGroup"> | ||
<string notr="true">matchTypeGroup</string> | ||
</attribute> | ||
</widget> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QCheckBox" name="kcfg_debugMode"> | ||
<property name="text"> | ||
<string notr="true">DebugMode</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
<buttongroups> | ||
<buttongroup name="matchTypeGroup"/> | ||
</buttongroups> | ||
</ui> |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 | ||
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > | ||
<kcfgfile name=""/> | ||
<group name=""> | ||
<entry name="classlist" type="String"> | ||
<label>Effected window class names</label> | ||
<default></default> | ||
</entry> | ||
<entry name="allowmode" type="Bool"> | ||
<default>false</default> | ||
</entry> | ||
<entry name="denymode" type="Bool"> | ||
<default>true</default> | ||
</entry> | ||
<entry name="debugMode" type="Bool"> | ||
<label>Whether to log debug information</label> | ||
<default>false</default> | ||
</entry> | ||
</group> | ||
</kcfg> |
Oops, something went wrong.