123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- #include "rdpoptions.h"
-
- RdpOptions::RdpOptions()
- {
- }
-
- QString RdpOptions::host() const
- {
- return m_host;
- }
-
- void RdpOptions::setHost(const QString &host)
- {
- m_host = host;
- }
-
- QString RdpOptions::username() const
- {
- return m_username;
- }
-
- void RdpOptions::setUsername(const QString &username)
- {
- m_username = username;
- }
-
- QString RdpOptions::password() const
- {
- return m_password;
- }
-
- void RdpOptions::setPassword(const QString &password)
- {
- m_password = password;
- }
-
- QSize RdpOptions::resolution() const
- {
- return m_resolution;
- }
-
- void RdpOptions::setResolution(const QSize &resolution)
- {
- m_resolution = resolution;
- }
-
- bool RdpOptions::fullescreen() const
- {
- return m_fullescreen;
- }
-
- void RdpOptions::setFullescreen(bool fullescreen)
- {
- m_fullescreen = fullescreen;
- }
-
- RdpOptions::Experience RdpOptions::experience() const
- {
- return m_experience;
- }
-
- void RdpOptions::setExperience(const Experience &experience)
- {
- m_experience = experience;
- }
-
- bool RdpOptions::bitmapCache() const
- {
- return m_bitmapCache;
- }
-
- void RdpOptions::setBitmapCache(bool bitmapCache)
- {
- m_bitmapCache = bitmapCache;
- }
-
- bool RdpOptions::metaKeys() const
- {
- return m_metaKeys;
- }
-
- void RdpOptions::setMetaKeys(bool metaKeys)
- {
- m_metaKeys = metaKeys;
- }
-
- bool RdpOptions::useShell() const
- {
- return m_useShell;
- }
-
- void RdpOptions::setUseShell(bool useShell)
- {
- m_useShell = useShell;
- }
-
- QString RdpOptions::shell() const
- {
- return m_shell;
- }
-
- void RdpOptions::setShell(const QString &shell)
- {
- m_shell = shell;
- }
- QString RdpOptions::shellWorkingDir() const
- {
- return m_shellWorkingDir;
- }
-
- void RdpOptions::setShellWorkingDir(const QString &shellWorkingDir)
- {
- m_shellWorkingDir = shellWorkingDir;
- }
-
- RdpOptions::Colors RdpOptions::colors() const
- {
- return m_colors;
- }
-
- void RdpOptions::setColors(const Colors &colors)
- {
- m_colors = colors;
- }
- bool RdpOptions::useAllMonitors() const
- {
- return m_useAllMonitors;
- }
-
- void RdpOptions::setUseAllMonitors(bool useAllMonitors)
- {
- m_useAllMonitors = useAllMonitors;
- }
- bool RdpOptions::fullscreenBar() const
- {
- return m_fullscreenBar;
- }
-
- void RdpOptions::setFullscreenBar(bool fullscreenBar)
- {
- m_fullscreenBar = fullscreenBar;
- }
- bool RdpOptions::autoReconnect() const
- {
- return m_autoReconnect;
- }
-
- void RdpOptions::setAutoReconnect(bool autoReconnect)
- {
- m_autoReconnect = autoReconnect;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|