2 * Copyright (c) 2002 Hamish Rodda <rodda@kde.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #include <QMouseEvent>
24 #include <KSystemTrayIcon>
26 #include "randrdisplay.h"
33 class KRandRSystemTray
: public KSystemTrayIcon
38 explicit KRandRSystemTray(RandRDisplay
*dpy
, QWidget
* parent
= 0);
43 void slotActivated(QSystemTrayIcon::ActivationReason reason
);
44 void slotScreenActivated();
45 void slotResolutionChanged(QAction
*action
);
46 void slotOrientationChanged(QAction
*action
);
47 void slotRefreshRateChanged(QAction
*action
);
50 void slotPrepareMenu();
53 void populateMenu(KMenu
* menu
);
54 void populateLegacyMenu(KMenu
* menu
);
57 QActionGroup
*populateRotations(KMenu
*menu
, int rotations
, int rotation
);
58 QActionGroup
*populateSizes(KMenu
*menu
, const SizeList
&sizes
, const QSize
&size
);
59 QActionGroup
*populateRates(KMenu
*menu
, const RateList
&rates
, float rate
);
63 QList
<KMenu
*> m_screenPopups
;
65 RandRDisplay
*m_display
;