mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
Started work on ptm-desktop-panel widget
This commit is contained in:
parent
9985fe6260
commit
0462bb186e
@ -24,5 +24,6 @@ else ()
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
add_subdirectory (ext-sysmon)
|
add_subdirectory (ext-sysmon)
|
||||||
|
add_subdirectory (desktop-panel)
|
||||||
add_subdirectory (ptm)
|
add_subdirectory (ptm)
|
||||||
add_subdirectory (readme)
|
add_subdirectory (readme)
|
||||||
|
31
sources/desktop-panel/CMakeLists.txt
Normal file
31
sources/desktop-panel/CMakeLists.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# set project name
|
||||||
|
set (SUBPROJECT plasma_applet_ptm-desktop-panel)
|
||||||
|
message (STATUS "Subproject ${SUBPROJECT}")
|
||||||
|
|
||||||
|
# find required libaries
|
||||||
|
find_package (KDE4 REQUIRED)
|
||||||
|
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
||||||
|
|
||||||
|
add_subdirectory (po)
|
||||||
|
|
||||||
|
include (KDE4Defaults)
|
||||||
|
include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
|
# set sources
|
||||||
|
set (PLUGIN_NAME ${SUBPROJECT})
|
||||||
|
file (GLOB SUBPROJECT_DESKTOP_IN *.desktop)
|
||||||
|
file (RELATIVE_PATH SUBPROJECT_DESKTOP ${CMAKE_SOURCE_DIR} ${SUBPROJECT_DESKTOP_IN})
|
||||||
|
file (GLOB SUBPROJECT_SOURCE *.cpp)
|
||||||
|
file (GLOB SUBPROJECT_UI *.ui)
|
||||||
|
|
||||||
|
# prepare
|
||||||
|
configure_file (${SUBPROJECT_DESKTOP_IN} ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJECT_DESKTOP})
|
||||||
|
|
||||||
|
# make
|
||||||
|
kde4_add_ui_files (SUBPROJECT_SOURCE ${SUBPROJECT_UI})
|
||||||
|
kde4_add_plugin (${PLUGIN_NAME} ${SUBPROJECT_SOURCE})
|
||||||
|
target_link_libraries (${PLUGIN_NAME} ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS})
|
||||||
|
|
||||||
|
# install
|
||||||
|
install (TARGETS ${PLUGIN_NAME} DESTINATION ${PLUGIN_INSTALL_DIR})
|
||||||
|
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJECT_DESKTOP} DESTINATION ${SERVICES_INSTALL_DIR})
|
683
sources/desktop-panel/appearance.ui
Normal file
683
sources/desktop-panel/appearance.ui
Normal file
@ -0,0 +1,683 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>AppearanceWidget</class>
|
||||||
|
<widget class="QWidget" name="AppearanceWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>480</width>
|
||||||
|
<height>343</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>480</width>
|
||||||
|
<height>320</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string notr="true">Configuration Window</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="tab_active">
|
||||||
|
<attribute name="title">
|
||||||
|
<string>Active desktop</string>
|
||||||
|
</attribute>
|
||||||
|
<layout class="QGridLayout" name="gridLayout_2">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QScrollArea" name="scrollArea_active">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="scrollAreaWidgetContents_active">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>448</width>
|
||||||
|
<height>289</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontActive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontActive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontActive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QFontComboBox" name="fontComboBox_fontActive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>180</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font family</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontSizeActive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontSizeActive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font size</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontSizeActive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_fontSizeActive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font size</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>7</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>48</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>12</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontColorActive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontColorActive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font color</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontColorActive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="KColorCombo" name="kcolorcombo_fontColorActive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font color</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontWeightActive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontWeightActive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font weight</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontWeightActive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_fontWeightActive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font weight</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>300</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>600</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>50</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>400</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontStyleActive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontStyleActive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font style</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontStyleActive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QComboBox" name="comboBox_fontStyleActive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font style</string>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>normal</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>italic</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="verticalSpacer_active">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>119</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<widget class="QWidget" name="tab_inactive">
|
||||||
|
<attribute name="title">
|
||||||
|
<string>Inactive desktop</string>
|
||||||
|
</attribute>
|
||||||
|
<layout class="QGridLayout" name="gridLayout_3">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QScrollArea" name="scrollArea_inactive">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="scrollAreaWidgetContents_inactive">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>448</width>
|
||||||
|
<height>289</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontInactive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontInactive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontInactive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QFontComboBox" name="fontComboBox_fontInactive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>180</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font family</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontSizeInactive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontSizeInactive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font size</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontSizeInactive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_fontSizeInactive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font size</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>7</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>48</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>12</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontColorInactive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontColorInactive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font color</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontColorInactive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="KColorCombo" name="kcolorcombo_fontColorInactive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font color</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontWeightInactive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontWeightInactive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font weight</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontWeightInactive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_fontWeightInactive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font weight</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>300</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>600</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>50</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>400</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_fontStyleInactive">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_fontStyleInactive">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Font style</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_fontStyleInactive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QComboBox" name="comboBox_fontStyleInactive">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>23</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set font style</string>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>normal</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>italic</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="verticalSpacer_inactive">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>119</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<customwidgets>
|
||||||
|
<customwidget>
|
||||||
|
<class>KColorCombo</class>
|
||||||
|
<extends>QComboBox</extends>
|
||||||
|
<header>kcolorcombo.h</header>
|
||||||
|
</customwidget>
|
||||||
|
</customwidgets>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
274
sources/desktop-panel/desktop-panel.cpp
Normal file
274
sources/desktop-panel/desktop-panel.cpp
Normal file
@ -0,0 +1,274 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* This file is part of pytextmonitor *
|
||||||
|
* *
|
||||||
|
* pytextmonitor is free software: you can redistribute it and/or *
|
||||||
|
* modify it under the terms of the GNU General Public License as *
|
||||||
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
|
* License, or (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* pytextmonitor is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License *
|
||||||
|
* along with pytextmonitor. If not, see http://www.gnu.org/licenses/ *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include "desktop-panel.h"
|
||||||
|
#include "ui_appearance.h"
|
||||||
|
#include "ui_widget.h"
|
||||||
|
|
||||||
|
#include <KDE/KConfigDialog>
|
||||||
|
#include <KDE/KGlobal>
|
||||||
|
#include <KDE/KStandardDirs>
|
||||||
|
#include <plasma/theme.h>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QFile>
|
||||||
|
#include <QGraphicsLinearLayout>
|
||||||
|
#include <QProcessEnvironment>
|
||||||
|
|
||||||
|
|
||||||
|
DesktopPanel::DesktopPanel(QObject *parent, const QVariantList &args)
|
||||||
|
: Plasma::Applet(parent, args)
|
||||||
|
{
|
||||||
|
// debug
|
||||||
|
QProcessEnvironment environment = QProcessEnvironment::systemEnvironment();
|
||||||
|
QString debugEnv = environment.value(QString("PTM_DEBUG"), QString("no"));
|
||||||
|
if (debugEnv == QString("yes"))
|
||||||
|
debug = true;
|
||||||
|
else
|
||||||
|
debug = false;
|
||||||
|
|
||||||
|
setHasConfigurationInterface(true);
|
||||||
|
// text format init
|
||||||
|
currentFormatLine.append(QString(""));
|
||||||
|
currentFormatLine.append(QString(""));
|
||||||
|
formatLine.append(QString(""));
|
||||||
|
formatLine.append(QString(""));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
DesktopPanel::~DesktopPanel()
|
||||||
|
{
|
||||||
|
// for (int i=0; i<labels.count(); i++)
|
||||||
|
// delete labels[i];
|
||||||
|
// delete layout;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DesktopPanel::init()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[init]";
|
||||||
|
extsysmonEngine = dataEngine(QString("ext-sysmon"));
|
||||||
|
|
||||||
|
layout = new QGraphicsLinearLayout();
|
||||||
|
layout->setContentsMargins(1, 1, 1, 1);
|
||||||
|
setLayout(layout);
|
||||||
|
|
||||||
|
currentDesktop = 1;
|
||||||
|
|
||||||
|
// read variables
|
||||||
|
configChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QStringList DesktopPanel::getDesktopNames()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[getDesktopNames]";
|
||||||
|
QStringList list;
|
||||||
|
QString fileName = KGlobal::dirs()->findResource("config", "kwinrc");
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[getDesktopNames]" << ":" << "Configuration file" << fileName;
|
||||||
|
QFile confFile(fileName);
|
||||||
|
if (!confFile.open(QIODevice::ReadOnly)) return list;
|
||||||
|
|
||||||
|
QString fileStr;
|
||||||
|
QStringList value;
|
||||||
|
bool desktopSection = false;
|
||||||
|
while (true) {
|
||||||
|
fileStr = QString(confFile.readLine()).trimmed();
|
||||||
|
if (fileStr[0] == QChar('#')) continue;
|
||||||
|
if (fileStr[0] == QChar(';')) continue;
|
||||||
|
if (fileStr[0] == QChar('[')) desktopSection = false;
|
||||||
|
if (fileStr == QString("[Desktops]")) desktopSection = true;
|
||||||
|
if (desktopSection) {
|
||||||
|
if (fileStr.contains(QChar('='))) {
|
||||||
|
value.clear();
|
||||||
|
for (int i=1; i<fileStr.split(QChar('=')).count(); i++)
|
||||||
|
value.append(fileStr.split(QChar('='))[i]);
|
||||||
|
if (fileStr.split(QChar('='))[0].contains(QString("Name_")))
|
||||||
|
list.append(value.join(QChar('=')));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (confFile.atEnd())
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
confFile.close();
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DesktopPanel::reinit()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[reinit]";
|
||||||
|
|
||||||
|
// layout
|
||||||
|
if (configuration[QString("background")].toInt() == 0)
|
||||||
|
setBackgroundHints(NoBackground);
|
||||||
|
else
|
||||||
|
setBackgroundHints(DefaultBackground);
|
||||||
|
if (configuration[QString("layout")].toInt() == 0)
|
||||||
|
layout->setOrientation(Qt::Horizontal);
|
||||||
|
else
|
||||||
|
layout->setOrientation(Qt::Horizontal);
|
||||||
|
|
||||||
|
// labels
|
||||||
|
for (int i=0; i<labels.count(); i++)
|
||||||
|
delete labels[i];
|
||||||
|
labels.clear();
|
||||||
|
for (int i=0; i<desktopNames.count(); i++) {
|
||||||
|
labels.append(new Plasma::Label());
|
||||||
|
layout->addItem(labels[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
updateText();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DesktopPanel::setCurrentDesktop()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[setCurrentDesktop]";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DesktopPanel::updateText()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[updateText]";
|
||||||
|
if (labels.isEmpty()) return;
|
||||||
|
QString line, mark, text;
|
||||||
|
for (int i=0; i<labels.count(); i++) {
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[updateText]" << "Label" << i;
|
||||||
|
line = configuration[QString("pattern")];
|
||||||
|
if (currentDesktop == i + 1)
|
||||||
|
mark = configuration[QString("mark")];
|
||||||
|
else
|
||||||
|
mark = QString("");
|
||||||
|
|
||||||
|
if (line.split(QString("$mark"))[0] != line) {
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[updateText]" << "Found mark";
|
||||||
|
line = line.split(QString("$mark"))[0] + mark + line.split(QString("$mark"))[1];
|
||||||
|
}
|
||||||
|
if (line.split(QString("$name"))[0] != line) {
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[updateText]" << "Found name";
|
||||||
|
line = line.split(QString("$name"))[0] + desktopNames[i] + line.split(QString("$name"))[1];
|
||||||
|
}
|
||||||
|
if (line.split(QString("$number"))[0] != line) {
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[updateText]" << "Found number";
|
||||||
|
line = line.split(QString("$number"))[0] + QString::number(i+1) + line.split(QString("$number"))[1];
|
||||||
|
}
|
||||||
|
if (line.split(QString("$total"))[0] != line) {
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[updateText]" << "Found total";
|
||||||
|
line = line.split(QString("$total"))[0] + QString::number(desktopNames.count()) + line.split(QString("$total"))[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentDesktop == i + 1)
|
||||||
|
text = currentFormatLine[0] + line + currentFormatLine[1];
|
||||||
|
else
|
||||||
|
text = formatLine[0] + line + formatLine[1];
|
||||||
|
labels[i]->setText(text);
|
||||||
|
}
|
||||||
|
resize(1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// data engine interaction
|
||||||
|
void DesktopPanel::dataUpdated(const QString &sourceName, const Plasma::DataEngine::Data &data)
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[dataUpdated]";
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[dataUpdated]" << ":" << "Run function with source name" << sourceName;
|
||||||
|
if (data.keys().count() == 0)
|
||||||
|
return;
|
||||||
|
if (sourceName == QString("desktop")) {
|
||||||
|
currentDesktop = data[QString("currentNumber")].toInt();
|
||||||
|
updateText();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// configuration interface
|
||||||
|
void DesktopPanel::createConfigurationInterface(KConfigDialog *parent)
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[createConfigurationInterface]";
|
||||||
|
QWidget *appWidget = new QWidget;
|
||||||
|
uiAppConfig.setupUi(appWidget);
|
||||||
|
QWidget *configWidget = new QWidget;
|
||||||
|
uiWidConfig.setupUi(configWidget);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
parent->addPage(configWidget, i18n("Widget"), Applet::icon());
|
||||||
|
parent->addPage(appWidget, i18n("Appearance"), QString("preferences-desktop-theme"));
|
||||||
|
|
||||||
|
connect(parent, SIGNAL(okClicked()), this, SLOT(configAccepted()));
|
||||||
|
connect(parent, SIGNAL(applyClicked()), this, SLOT(configAccepted()));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DesktopPanel::configAccepted()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[configAccepted]";
|
||||||
|
extsysmonEngine->disconnectSource(QString("desktop"), this);
|
||||||
|
KConfigGroup cg = config();
|
||||||
|
|
||||||
|
// cg.writeEntry("autoUpdateInterval", uiConfig.spinBox_autoUpdate->value());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DesktopPanel::configChanged()
|
||||||
|
{
|
||||||
|
if (debug) qDebug() << "[PTM-DP]" << "[configChanged]";
|
||||||
|
KConfigGroup cg = config();
|
||||||
|
|
||||||
|
configuration[QString("background")] = cg.readEntry("background", "0");
|
||||||
|
configuration[QString("interval")] = cg.readEntry("interval", "1000");
|
||||||
|
configuration[QString("layout")] = cg.readEntry("layout", "0");
|
||||||
|
configuration[QString("leftStretch")] = cg.readEntry("left_stretch", "2");
|
||||||
|
configuration[QString("mark")] = cg.readEntry("mark", "*");
|
||||||
|
configuration[QString("pattern")] = cg.readEntry("pattern", "[$mark$number/$total: $name]");
|
||||||
|
configuration[QString("rightStretch")] = cg.readEntry("right_stretch", "2");
|
||||||
|
|
||||||
|
desktopNames = getDesktopNames();
|
||||||
|
|
||||||
|
extsysmonEngine->connectSource(QString("desktop"), this, configuration[QString("interval")].toInt());
|
||||||
|
|
||||||
|
QString fontFamily = cg.readEntry("currentFontFamily", "Terminus");
|
||||||
|
int fontSize = cg.readEntry("currentFontSize", 10);
|
||||||
|
QString fontColor = cg.readEntry("currentFontColor", "#ff0000");
|
||||||
|
int fontWeight = cg.readEntry("currentFontWeight", 400);
|
||||||
|
QString fontStyle = cg.readEntry("currentFontStyle", "normal");
|
||||||
|
currentFormatLine[0] = ("<p align=\"center\"><span style=\" font-family:'" + fontFamily + \
|
||||||
|
"'; font-style:" + fontStyle + \
|
||||||
|
"; font-size:" + QString::number(fontSize) + \
|
||||||
|
"pt; font-weight:" + QString::number(fontWeight) + \
|
||||||
|
"; color:" + fontColor + \
|
||||||
|
";\"><pre>");
|
||||||
|
currentFormatLine[1] = ("</pre></span></p>");
|
||||||
|
|
||||||
|
fontFamily = cg.readEntry("fontFamily", "Terminus");
|
||||||
|
fontSize = cg.readEntry("fontSize", 10);
|
||||||
|
fontColor = cg.readEntry("fontColor", "#000000");
|
||||||
|
fontWeight = cg.readEntry("fontWeight", 400);
|
||||||
|
fontStyle = cg.readEntry("fontStyle", "normal");
|
||||||
|
formatLine[0] = ("<p align=\"center\"><span style=\" font-family:'" + fontFamily + \
|
||||||
|
"'; font-style:" + fontStyle + \
|
||||||
|
"; font-size:" + QString::number(fontSize) + \
|
||||||
|
"pt; font-weight:" + QString::number(fontWeight) + \
|
||||||
|
"; color:" + fontColor + \
|
||||||
|
";\"><pre>");
|
||||||
|
formatLine[1] = ("</pre></span></p>");
|
||||||
|
|
||||||
|
reinit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#include "desktop-panel.moc"
|
80
sources/desktop-panel/desktop-panel.h
Normal file
80
sources/desktop-panel/desktop-panel.h
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* This file is part of pytextmonitor *
|
||||||
|
* *
|
||||||
|
* pytextmonitor is free software: you can redistribute it and/or *
|
||||||
|
* modify it under the terms of the GNU General Public License as *
|
||||||
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
|
* License, or (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* pytextmonitor is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License *
|
||||||
|
* along with pytextmonitor. If not, see http://www.gnu.org/licenses/ *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef DESKTOP_PANEL_H
|
||||||
|
#define DESKTOP_PANEL_H
|
||||||
|
|
||||||
|
#include <Plasma/Applet>
|
||||||
|
#include <Plasma/DataEngine>
|
||||||
|
#include <Plasma/Label>
|
||||||
|
|
||||||
|
#include <ui_appearance.h>
|
||||||
|
#include <ui_widget.h>
|
||||||
|
|
||||||
|
|
||||||
|
class QGraphicsLinearLayout;
|
||||||
|
|
||||||
|
class DesktopPanel : public Plasma::Applet
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
DesktopPanel(QObject *parent, const QVariantList &args);
|
||||||
|
~DesktopPanel();
|
||||||
|
void init();
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
// dataengine
|
||||||
|
void dataUpdated(const QString &sourceName, const Plasma::DataEngine::Data &data);
|
||||||
|
// configuration interface
|
||||||
|
void configAccepted();
|
||||||
|
void configChanged();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void reinit();
|
||||||
|
void setCurrentDesktop();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void createConfigurationInterface(KConfigDialog *parent);
|
||||||
|
|
||||||
|
private:
|
||||||
|
// functions
|
||||||
|
QStringList getDesktopNames();
|
||||||
|
void updateText();
|
||||||
|
// ui
|
||||||
|
QGraphicsLinearLayout *layout;
|
||||||
|
QList<Plasma::Label *> labels;
|
||||||
|
// debug
|
||||||
|
bool debug;
|
||||||
|
// data engine
|
||||||
|
int currentDesktop;
|
||||||
|
Plasma::DataEngine *extsysmonEngine;
|
||||||
|
// configuration interface
|
||||||
|
Ui::AppearanceWidget uiAppConfig;
|
||||||
|
Ui::ConfigWindow uiWidConfig;
|
||||||
|
// configuration
|
||||||
|
QMap<QString, QString> configuration;
|
||||||
|
QStringList desktopNames;
|
||||||
|
QStringList currentFormatLine;
|
||||||
|
QStringList formatLine;
|
||||||
|
};
|
||||||
|
|
||||||
|
K_EXPORT_PLASMA_APPLET(ptm-desktop-panel, DesktopPanel)
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* DESKTOP_PANEL_H */
|
25
sources/desktop-panel/plasma-applet-desktoppanel.desktop
Normal file
25
sources/desktop-panel/plasma-applet-desktoppanel.desktop
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Name=PTM Desktop Panel
|
||||||
|
Comment=A minimalistic Plasmoid script written on Python2
|
||||||
|
Comment[en]=A minimalistic Plasmoid script written on Python2
|
||||||
|
Comment[es]=Un plasmoide minimalista escrito en Python2
|
||||||
|
Comment[es]=Un script Plasmoïde minimaliste écrit sur Python2
|
||||||
|
Comment[pt_BR]=Um script Plasmoid escrito em Python2
|
||||||
|
Comment[ru]=Минималистичный плазмоид скрипт, написанный на Python2
|
||||||
|
Comment[uk]=Мінімалістичний плазмоїд, що написаний на Python2
|
||||||
|
X-KDE-ServiceTypes=Plasma/Applet
|
||||||
|
Type=Service
|
||||||
|
Icon=utilities-system-monitor
|
||||||
|
|
||||||
|
X-KDE-Library=plasma_applet_ptm-desktop-panel
|
||||||
|
|
||||||
|
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
|
||||||
|
X-KDE-PluginInfo-Email=esalexeev@gmail.com
|
||||||
|
X-KDE-PluginInfo-Name=ptm-desktop-panel
|
||||||
|
X-KDE-PluginInfo-Version=@PROJECT_VERSION@
|
||||||
|
X-KDE-PluginInfo-Website=http://arcanis.name/projects/pytextmonitor/
|
||||||
|
X-KDE-PluginInfo-Category=System Information
|
||||||
|
X-KDE-PluginInfo-Depends=
|
||||||
|
X-KDE-PluginInfo-License=GPLv3
|
||||||
|
X-KDE-PluginInfo-EnabledByDefault=true
|
24
sources/desktop-panel/po/CMakeLists.txt
Normal file
24
sources/desktop-panel/po/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
find_package(KDE4 REQUIRED)
|
||||||
|
find_package(Gettext REQUIRED)
|
||||||
|
|
||||||
|
if (NOT GETTEXT_MSGFMT_EXECUTABLE)
|
||||||
|
message(FATAL_ERROR "Please install the msgfmt binary")
|
||||||
|
endif (NOT GETTEXT_MSGFMT_EXECUTABLE)
|
||||||
|
|
||||||
|
file (GLOB _po_files *.po)
|
||||||
|
|
||||||
|
set (_gmoFiles)
|
||||||
|
|
||||||
|
foreach (_current_PO_FILE ${_po_files})
|
||||||
|
get_filename_component (_lang ${_current_PO_FILE} NAME_WE)
|
||||||
|
set (_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo)
|
||||||
|
add_custom_command (OUTPUT ${_gmoFile}
|
||||||
|
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o ${_gmoFile} ${_current_PO_FILE}
|
||||||
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
||||||
|
DEPENDS ${_current_PO_FILE}
|
||||||
|
)
|
||||||
|
|
||||||
|
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo DESTINATION ${LOCALE_INSTALL_DIR}/${_lang}/LC_MESSAGES/ RENAME plasma_applet_netctl.mo)
|
||||||
|
list (APPEND _gmoFiles ${_gmoFile})
|
||||||
|
endforeach (_current_PO_FILE)
|
||||||
|
add_custom_target (pofiles ALL DEPENDS ${_gmoFiles})
|
0
sources/desktop-panel/po/background.list
Normal file
0
sources/desktop-panel/po/background.list
Normal file
15
sources/desktop-panel/po/create_list_files.sh
Executable file
15
sources/desktop-panel/po/create_list_files.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
WDIR=`pwd` # working dir
|
||||||
|
SATELLITE_LIST=satellite.list
|
||||||
|
BACKGROUND_LIST=background.list
|
||||||
|
|
||||||
|
# Background list
|
||||||
|
cd "$WDIR"
|
||||||
|
cd ../images
|
||||||
|
ls -1 background_* | sed -e "s/background_//g" | sed -e "s/_/ /g" | sed -e "s/\.jpg//g" | sed -e "s/\.png//g" | sed -e "s/\.gif//g" | grep -v '^$' | sort --unique --ignore-leading-blanks > "$WDIR/background.list"
|
||||||
|
|
||||||
|
# Satellite list
|
||||||
|
cd "$WDIR"
|
||||||
|
cd ../data
|
||||||
|
cat satellite_images.xml | grep image\ name | sed -e "s/.*<image name=\"\([^\"]*\).*/\1/" | sed -e "s/\&/\&/g" | sed -e "s/\'/'/g" | sed -e "s/\"/\"/g" | sed -e "s/\</</g" | sed -e "s/\>/>/g" | grep -v '^$' | sort --unique --ignore-leading-blanks > "$WDIR/satellite.list"
|
81
sources/desktop-panel/po/extract_messages.sh
Executable file
81
sources/desktop-panel/po/extract_messages.sh
Executable file
@ -0,0 +1,81 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
BASEDIR="../" # root of translatable sources
|
||||||
|
PROJECT="plasma_applet_ptm-desktop-panel" # project name
|
||||||
|
BUGADDR="https://github.com/arcan1s/pytextmonitor/issues" # MSGID-Bugs
|
||||||
|
WDIR=`pwd` # working dir
|
||||||
|
SATELLITE_LIST=satellite.list
|
||||||
|
BACKGROUND_LIST=background.list
|
||||||
|
|
||||||
|
add_list()
|
||||||
|
{
|
||||||
|
LIST=$1
|
||||||
|
|
||||||
|
if [ -z "$LIST" ]
|
||||||
|
then
|
||||||
|
echo ">>ERR<< add_list() - missing parameter LIST - exiting"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$LIST" ]
|
||||||
|
then
|
||||||
|
cat $LIST | while read ROW
|
||||||
|
do
|
||||||
|
echo "tr2i18n(\"${ROW}\")" >> ${WDIR}/rc.cpp
|
||||||
|
done
|
||||||
|
else
|
||||||
|
echo ">>ERR<< add_list() - file $LIST does not exist."
|
||||||
|
fi
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Preparing rc files"
|
||||||
|
cd ${BASEDIR}
|
||||||
|
# we use simple sorting to make sure the lines do not jump around too much from system to system
|
||||||
|
find . -name '*.rc' -o -name '*.ui' -o -name '*.kcfg' | sort > ${WDIR}/rcfiles.list
|
||||||
|
xargs --arg-file=${WDIR}/rcfiles.list extractrc > ${WDIR}/rc.cpp
|
||||||
|
|
||||||
|
# additional string for KAboutData
|
||||||
|
echo 'i18nc("NAME OF TRANSLATORS","Your names");' >> ${WDIR}/rc.cpp
|
||||||
|
echo 'i18nc("EMAIL OF TRANSLATORS","Your emails");' >> ${WDIR}/rc.cpp
|
||||||
|
|
||||||
|
cd ${WDIR}
|
||||||
|
|
||||||
|
# Add Satellite list
|
||||||
|
add_list "$SATELLITE_LIST"
|
||||||
|
|
||||||
|
# Add Background list
|
||||||
|
add_list "$BACKGROUND_LIST"
|
||||||
|
|
||||||
|
echo "Done preparing rc files"
|
||||||
|
|
||||||
|
|
||||||
|
echo "Extracting messages"
|
||||||
|
cd ${BASEDIR}
|
||||||
|
# see above on sorting
|
||||||
|
find . -name '*.cpp' -o -name '*.h' -o -name '*.c' | sort > ${WDIR}/infiles.list
|
||||||
|
echo "rc.cpp" >> ${WDIR}/infiles.list
|
||||||
|
cd ${WDIR}
|
||||||
|
xgettext --from-code=UTF-8 -C -kde -ci18n -ki18n:1 -ki18nc:1c,2 -ki18np:1,2 -ki18ncp:1c,2,3 -ktr2i18n:1 \
|
||||||
|
-kI18N_NOOP:1 -kI18N_NOOP2:1c,2 -kaliasLocale -kki18n:1 -kki18nc:1c,2 -kki18np:1,2 -kki18ncp:1c,2,3 \
|
||||||
|
--msgid-bugs-address="${BUGADDR}" \
|
||||||
|
--files-from=infiles.list -D ${BASEDIR} -D ${WDIR} -o ${PROJECT}.pot || { echo "error while calling xgettext. aborting."; exit 1; }
|
||||||
|
echo "Done extracting messages"
|
||||||
|
|
||||||
|
|
||||||
|
echo "Merging translations"
|
||||||
|
catalogs=`find . -name '*.po'`
|
||||||
|
for cat in $catalogs; do
|
||||||
|
echo $cat
|
||||||
|
msgmerge -o $cat.new $cat ${PROJECT}.pot
|
||||||
|
mv $cat.new $cat
|
||||||
|
done
|
||||||
|
echo "Done merging translations"
|
||||||
|
|
||||||
|
|
||||||
|
echo "Cleaning up"
|
||||||
|
cd ${WDIR}
|
||||||
|
rm rcfiles.list
|
||||||
|
rm infiles.list
|
||||||
|
rm rc.cpp
|
||||||
|
echo "Done"
|
||||||
|
|
287
sources/desktop-panel/po/plasma_applet_ptm-desktop-panel.pot
Normal file
287
sources/desktop-panel/po/plasma_applet_ptm-desktop-panel.pot
Normal file
@ -0,0 +1,287 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://github.com/arcan1s/pytextmonitor/issues\n"
|
||||||
|
"POT-Creation-Date: 2014-07-08 22:44+0400\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:112
|
||||||
|
msgid "Set profile %1 disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:116
|
||||||
|
msgid "Set profile %1 enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:132
|
||||||
|
msgid "Start profile %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:151
|
||||||
|
msgid "Stop profile %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:165
|
||||||
|
msgid "Restart profile %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:184
|
||||||
|
msgid "Start another profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:186
|
||||||
|
msgid "Stop "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:188
|
||||||
|
msgid "Restart "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:191
|
||||||
|
msgid "Disable "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:193
|
||||||
|
msgid "Enable "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:196 desktop-panel.cpp:223
|
||||||
|
msgid "Start profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:230
|
||||||
|
msgid "Stop profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:234
|
||||||
|
msgid "Restart profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:238
|
||||||
|
msgid "Enable profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:242
|
||||||
|
msgid "Show WiFi menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:262
|
||||||
|
msgid "Start GUI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:270
|
||||||
|
msgid "Start WiFi menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:334
|
||||||
|
msgid "Network is up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:340
|
||||||
|
msgid "Network is down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: desktop-panel.cpp:477
|
||||||
|
msgid "Netctl plasmoid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:30
|
||||||
|
#. i18n: ectx: attribute (title), widget (QWidget, tabConfiguration)
|
||||||
|
#: po/rc.cpp:3 rc.cpp:3
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:54
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
||||||
|
#: po/rc.cpp:6 rc.cpp:6
|
||||||
|
msgid "Auto update interval, msec"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:112
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
||||||
|
#: po/rc.cpp:9 rc.cpp:9
|
||||||
|
msgid "Path to GUI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:128
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: configwindow.ui:161
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: configwindow.ui:197
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: configwindow.ui:233
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#. i18n: file: configwindow.ui:621
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: configwindow.ui:654
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: configwindow.ui:128
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: configwindow.ui:161
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: configwindow.ui:197
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: configwindow.ui:233
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#. i18n: file: configwindow.ui:621
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: configwindow.ui:654
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#: po/rc.cpp:12 po/rc.cpp:18 po/rc.cpp:24 po/rc.cpp:30 po/rc.cpp:87
|
||||||
|
#: po/rc.cpp:93 rc.cpp:12 rc.cpp:18 rc.cpp:24 rc.cpp:30 rc.cpp:87 rc.cpp:93
|
||||||
|
msgid "Browse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:145
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#: po/rc.cpp:15 rc.cpp:15
|
||||||
|
msgid "Path to netctl"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:178
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
||||||
|
#: po/rc.cpp:21 rc.cpp:21
|
||||||
|
msgid "Use sudo for netctl"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:214
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
||||||
|
#: po/rc.cpp:27 rc.cpp:27
|
||||||
|
msgid "Show 'Start WiFi menu'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:242
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
||||||
|
#: po/rc.cpp:33 rc.cpp:33
|
||||||
|
msgid "Show more detailed interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:252
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
||||||
|
#: po/rc.cpp:36 rc.cpp:36
|
||||||
|
msgid "Show network devices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:262
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
||||||
|
#: po/rc.cpp:39 rc.cpp:39
|
||||||
|
msgid "Show external IP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:272
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
||||||
|
#: po/rc.cpp:42 rc.cpp:42
|
||||||
|
msgid "Show internal IP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:296
|
||||||
|
#. i18n: ectx: attribute (title), widget (QWidget, tabAppearance)
|
||||||
|
#: po/rc.cpp:45 rc.cpp:45
|
||||||
|
msgid "Appearance"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:310
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
|
#: po/rc.cpp:48 rc.cpp:48
|
||||||
|
msgid "Font"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:342
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
|
#: po/rc.cpp:51 rc.cpp:51
|
||||||
|
msgid "Set font family"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:359
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
|
#: po/rc.cpp:54 rc.cpp:54
|
||||||
|
msgid "Font size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:391
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
|
#: po/rc.cpp:57 rc.cpp:57
|
||||||
|
msgid "Set font size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:420
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
||||||
|
#: po/rc.cpp:60 rc.cpp:60
|
||||||
|
msgid "Font color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:452
|
||||||
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
|
#: po/rc.cpp:63 rc.cpp:63
|
||||||
|
msgid "Set font color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:469
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
||||||
|
#: po/rc.cpp:66 rc.cpp:66
|
||||||
|
msgid "Font weight"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:501
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
|
#: po/rc.cpp:69 rc.cpp:69
|
||||||
|
msgid "Set font weight"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:533
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
||||||
|
#: po/rc.cpp:72 rc.cpp:72
|
||||||
|
msgid "Font style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:565
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:75 rc.cpp:75
|
||||||
|
msgid "Set font style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:569
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:78 rc.cpp:78
|
||||||
|
msgid "normal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:574
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:81 rc.cpp:81
|
||||||
|
msgid "italic"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:605
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
||||||
|
#: po/rc.cpp:84 rc.cpp:84
|
||||||
|
msgid "Active icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: configwindow.ui:638
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
||||||
|
#: po/rc.cpp:90 rc.cpp:90
|
||||||
|
msgid "Inactive icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: po/rc.cpp:94 rc.cpp:94
|
||||||
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
|
msgid "Your names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: po/rc.cpp:95 rc.cpp:95
|
||||||
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
|
msgid "Your emails"
|
||||||
|
msgstr ""
|
0
sources/desktop-panel/po/satellite.list
Normal file
0
sources/desktop-panel/po/satellite.list
Normal file
189
sources/desktop-panel/widget.ui
Normal file
189
sources/desktop-panel/widget.ui
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>ConfigWindow</class>
|
||||||
|
<widget class="QWidget" name="ConfigWindow">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>480</width>
|
||||||
|
<height>343</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>480</width>
|
||||||
|
<height>320</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string notr="true">Configuration Window</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QScrollArea" name="scrollArea">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="scrollAreaWidgetContents">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>464</width>
|
||||||
|
<height>327</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="checkBox_background">
|
||||||
|
<property name="text">
|
||||||
|
<string>Enable background</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="checkBox_layout">
|
||||||
|
<property name="text">
|
||||||
|
<string>Vertical layout</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="checkBox_leftStretch">
|
||||||
|
<property name="text">
|
||||||
|
<string>Add stretch to left/top of the layout</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="checkBox_rightStretch">
|
||||||
|
<property name="text">
|
||||||
|
<string>Add stretch to right/bottom of the layout</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_interval">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_interval">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Time interval</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="spacer_interval">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_interval">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>180</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>10000</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>500</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>1000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_mark">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_mark">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Mark</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="lineEdit_mark"/>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_pattern">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_pattern">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Pattern</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="lineEdit_pattern">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>$mark - show mark if the current desktop is active
|
||||||
|
$name - desktop name
|
||||||
|
$number - desktop number
|
||||||
|
$total - total number of desktops</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="spacer_widget">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>152</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
@ -8,7 +8,7 @@ Comment[es]=Un script Plasmoïde minimaliste écrit sur Python2
|
|||||||
Comment[pt_BR]=Um script Plasmoid escrito em Python2
|
Comment[pt_BR]=Um script Plasmoid escrito em Python2
|
||||||
Comment[ru]=Минималистичный плазмоид скрипт, написанный на Python2
|
Comment[ru]=Минималистичный плазмоид скрипт, написанный на Python2
|
||||||
Comment[uk]=Мінімалістичний плазмоїд, що написаний на Python2
|
Comment[uk]=Мінімалістичний плазмоїд, що написаний на Python2
|
||||||
ServiceTypes=Plasma/Applet
|
X-KDE-ServiceTypes=Plasma/Applet
|
||||||
Type=Service
|
Type=Service
|
||||||
Icon=utilities-system-monitor
|
Icon=utilities-system-monitor
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user