summaryrefslogtreecommitdiff
path: root/libopie2/opieui/big-screen/obigscreen_p.h
blob: db8fc83edb82e43c9659f7d4f869f35338ec6ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef OPIE_BIG_SCREEN_PRIVATE
#define OPIE_BIG_SCREEN_PRIVATE

/* QT */
#include <qstring.h>

class QWidget;

namespace Opie
{

struct OSplitterContainer
{
    bool operator==( const OSplitterContainer& o) const
    {
        if (widget != o.widget ) return false;
        if (icon   != o.icon   ) return false;
        if (name   != o.name   ) return false;
        return true;
    }
    QWidget* widget;
    QString icon;
    QString name;
};

};

#endif