summaryrefslogtreecommitdiff
path: root/libopie2/opieui/big-screen/obigscreen_p.h
blob: a85a56c3556d97213e5e275c58e9dc5947d80354 (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
29
30
31
#ifndef OPIE_BIG_SCREEN_PRIVATE
#define OPIE_BIG_SCREEN_PRIVATE

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

class QWidget;

namespace Opie {
namespace Ui  {
namespace Private{

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