summaryrefslogtreecommitdiff
path: root/libopie2/opieui/big-screen/omodalhelper.cpp
blob: 19aa64f2bc08d0341343b6e60620c1a6a55faa67 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
               =.            This file is part of the OPIE Project
             .=l.            Copyright (c)  2003 hOlgAr <zecke@handhelds.org>
           .>+-=
 _;:,     .>    :=|.         This library is free software; you can
.> <`_,   >  .   <=          redistribute it and/or  modify it under
:`=1 )Y*s>-.--   :           the terms of the GNU Library General Public
.="- .-=="i,     .._         License as published by the Free Software
 - .   .-<_>     .<>         Foundation; either version 2 of the License,
     ._= =}       :          or (at your option) any later version.
    .%`+i>       _;_.
    .i_,=:_.      -<s.       This library is distributed in the hope that
     +  .  -:.       =       it will be useful,  but WITHOUT ANY WARRANTY;
    : ..    .:,     . . .    without even the implied warranty of
    =_        +     =;=|`    MERCHANTABILITY or FITNESS FOR A
  _.=:.       :    :=>`:     PARTICULAR PURPOSE. See the GNU
..}^=.=       =       ;      Library General Public License for more
++=   -.     .`     .:       details.
 :     =  ...= . :.=-
 -.   .:....=;==+<;          You should have received a copy of the GNU
  -_. . .   )=.  =           Library General Public License along with
    --        :-=`           this library; see the file COPYING.LIB.
                             If not, write to the Free Software Foundation,
                             Inc., 59 Temple Place - Suite 330,
                             Boston, MA 02111-1307, USA.
 
*/

#include "omodalhelper.h"

/* QT */
#include <qpushbutton.h>
#include <qvbox.h>
#include <qlayout.h>
#include <qlabel.h>

/* Signal handling */
OModalHelperSignal::OModalHelperSignal( OModalHelperBase* base, QObject* parent )
        : QObject( parent, "OModal Helper Signal" ), m_base( base )
{}

OModalHelperSignal::~OModalHelperSignal()
{
    /* special the ancestor deletes its creator */
    delete m_base;
}


/* Helper Controler */
/*
 * the dialogs signal will be slotted here
 * and we will call into m_base
 */
OModalHelperControler::OModalHelperControler( OModalHelperBase* base, QObject* parent )
        : QObject(parent, "OModal Helper Controler" ), m_base( base ), m_dia( 0 ), m_id( -1 )
{}

TransactionID OModalHelperControler::transactionID()const
{
    return m_id;
}

void OModalHelperControler::setTransactionID( TransactionID id )
{
    m_dia = 0;
    m_id = id;
}

QDialog* OModalHelperControler::dialog()const
{
    return m_dia;
}

/*
 * If we're in the New mode we will map the QDialog
 * to the TransactionID
 */
void OModalHelperControler::done( int result )
{
    if ( sender() && !sender()->isA("OModalQueuedDialog") )
        m_dia = static_cast<QDialog*>( sender() );

    m_base->done( result, m_id );
}

void OModalHelperControler::next()
{
    m_base->next( m_id );
}

void OModalHelperControler::prev()
{
    m_base->prev( m_id );
}

/* The Queued Dialog inclusive QueuedBar */
struct OModalQueueBar : public QHBox
{
    QPushButton* next;
    QPushButton* prev;
    QLabel     * label;

    OModalQueueBar( QWidget* parent );
    void setText( const QString& str );
};

OModalQueueBar::OModalQueueBar( QWidget* parent )
        : QWidget( parent, "OModal Queue Bar" )
{
    prev = new QPushButton( this );
    prev->setText( OModalQueuedDialog::tr("Prev") );

    label = new QLabel(this);

    next = new QPushButton( this );
    next->setText( OModalQueuedDialog::tr("Next") );
}

void OModalQueueBar::setText( const QString& str )
{
    label->setText( str );
}


OModalQueuedDialog::OModalQueuedDialog( QDialog* mainWidget )
        : QDialog(0, "OModal Queued Dialog" )
{
    QVBoxLayout *lay = new QVBoxLayout( this );

    m_bar = new OModalQueueBar( this );
    lay->addWidget( m_bar );

    m_center = mainWidget;
    m_center->reparent(this, 0, QPoint(0, 0) );
    lay->addWidget( m_center );


    connect(m_bar->next, SIGNAL(clicked() ), this,
            SIGNAL(next() ) );
    connect(m_bar->prev, SIGNAL(clicked() ), this,
            SIGNAL(prev() ) );

}

OModalQueuedDialog::~OModalQueuedDialog()
{}

QDialog* OModalQueuedDialog::centerDialog()const
{
    return m_center;
}

void OModalQueuedDialog::setQueueBarEnabled( bool b)
{
    /* in Qt3 use setEnabled( bool ) */
    if (b)
        m_bar->show();
    else
        m_bar->hide();
}

void OModalQueuedDialog::setRecord( int record, int count )
{
    if (!record && !count )
    {
        hide();
        return;
    }
    else
        show();

    if ( count > 1 )
        m_bar->show();
    else
        m_bar->hide();

    m_bar->setText( tr("Editing record %1 out of %2",
                       "Shows the current edited record out of an array of records").arg( record ). arg( count ) );
}