mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
23 lines
297 B
C++
23 lines
297 B
C++
#include "docksettings.h"
|
|
|
|
DockSettings::DockSettings(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
DockSettings::DockSide DockSettings::side() const
|
|
{
|
|
return Bottom;
|
|
}
|
|
|
|
const QSize DockSettings::mainWindowSize() const
|
|
{
|
|
return m_mainWindowSize;
|
|
}
|
|
|
|
void DockSettings::updateGeometry()
|
|
{
|
|
|
|
}
|