diff -r b3cee849fa46 -r fad26422216a perfmon/ui/hb/datapopup/inc/perfmondatapopupdialog_p.h --- a/perfmon/ui/hb/datapopup/inc/perfmondatapopupdialog_p.h Tue Aug 31 15:15:20 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,88 +0,0 @@ -/* -* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - -#ifndef PERFMONDATAPOPUPDIALOG_P_H -#define PERFMONDATAPOPUPDIALOG_P_H - -#include -#include - -#include -#include -#include - -class PerfMonDataPopupWidget; - -class PerfMonDataPopupDialog : public HbDialog, public HbDeviceDialogInterface -{ - Q_OBJECT - Q_PROPERTY(Location location READ location WRITE setLocation) - Q_PROPERTY(QStringList lines READ lines WRITE setLines) - - Q_ENUMS(Location) - -public: - enum Location - { - LocationTopRight = 0, - LocationBottomMiddle - }; - -public: - PerfMonDataPopupDialog(const QVariantMap ¶meters); - virtual ~PerfMonDataPopupDialog(); - - bool setDeviceDialogParameters(const QVariantMap ¶meters); - int deviceDialogError() const; - void closeDeviceDialog(bool byClient); - HbPopup *deviceDialogWidget() const; - -protected: -// void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, -// QWidget *widget=0); - -protected: - void hideEvent(QHideEvent *event); - void showEvent(QShowEvent *event); - void mousePressEvent(QGraphicsSceneMouseEvent *event); - -signals: - void deviceDialogClosed(); - void deviceDialogData(QVariantMap data); - -private slots: - void reposition(); - -private: - Location location() const; - void setLocation(Location location); - - QStringList lines() const; - void setLines(const QStringList &lines); - -private: - Q_DISABLE_COPY(PerfMonDataPopupDialog) - - int mLastError; - bool mShowEventReceived; - - Location mLocation; - - PerfMonDataPopupWidget *mWidget; -}; - -#endif // PERFMONDATAPOPUPDIALOG_P_H