mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-02-03 04:49:04 +01:00
Update windows version
This commit is contained in:
@@ -85,6 +85,24 @@ Preferences::MinimizeType WindowCtrlWin::getMinimizeType() const
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Set the minimize icon type
|
||||
*/
|
||||
void WindowCtrlWin::setMinimizeIconType( Preferences::MinimizeIconType type )
|
||||
{
|
||||
m_minimize_icon_type = type;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Get the minimize icon type
|
||||
*/
|
||||
Preferences::MinimizeIconType WindowCtrlWin::getMinimizeIconType() const
|
||||
{
|
||||
return m_minimize_icon_type;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Get the parent pid of SysTray-X, TB hopefully
|
||||
*/
|
||||
|
||||
@@ -79,6 +79,20 @@ class WindowCtrlWin : public QObject
|
||||
*/
|
||||
Preferences::MinimizeType getMinimizeType() const;
|
||||
|
||||
/**
|
||||
* @brief setMinimizeIconType
|
||||
*
|
||||
* @param type Set the minimize icon type.
|
||||
*/
|
||||
void setMinimizeIconType( Preferences::MinimizeIconType type );
|
||||
|
||||
/**
|
||||
* @brief getMinimizeIconType
|
||||
*
|
||||
* @return The minimize icon type.
|
||||
*/
|
||||
Preferences::MinimizeIconType getMinimizeIconType() const;
|
||||
|
||||
/**
|
||||
* @brief getPpid. Get the parent process id.
|
||||
*
|
||||
@@ -298,6 +312,11 @@ class WindowCtrlWin : public QObject
|
||||
*/
|
||||
Preferences::MinimizeType m_minimize_type;
|
||||
|
||||
/**
|
||||
* @brief m_minimize_icon_type. Minimize icon type.
|
||||
*/
|
||||
Preferences::MinimizeIconType m_minimize_icon_type;
|
||||
|
||||
/**
|
||||
* @brief m_hook
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user