Rabbit Remote Control
0.1.0-bate14
Toggle main menu visibility
Loading...
Searching...
No Matches
Plugins
FreeRDP
Client
DlgDesktopSize.h
1
// Author: Kang Lin <kl222@126.com>
2
#pragma once
3
#include <QDialog>
4
#include <QStandardItemModel>
5
6
namespace
Ui
{
7
class
CDlgDesktopSize;
8
}
9
10
class
CDlgDesktopSize :
public
QDialog
11
{
12
Q_OBJECT
13
14
public
:
15
explicit
CDlgDesktopSize(QWidget *parent =
nullptr
);
16
virtual
~CDlgDesktopSize();
17
18
void
SetDesktopSizes(
const
QStringList& lstSize);
19
const
QStringList GetDesktopSize();
20
21
private
slots:
22
void
on_pbAdd_clicked();
23
void
on_pbRemove_clicked();
24
void
slotItemChanged(QStandardItem *item);
25
26
private
:
27
bool
checkFormat(QString size);
28
29
private
:
30
Ui::CDlgDesktopSize *ui;
31
32
QStringList m_lstDesktopSize;
33
QStandardItemModel* m_pModel;
34
};
Ui
Definition
FrmFullScreenToolBar.h:14
Author: Kang Lin (kl222@126.com)
Copyright (c) Kang Lin Studios All Rights Reserved