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
|
/* -*- C++ -*- */
#ifndef TESTUI_APP_H
#define TESTUI_APP_H
#include <kmainwindow.h>
#include <kparts/part.h>
#include <kactionclasses.h>
#include <apt-front/cache/observer.h>
#include <apt-front/cache/component/state.h>
#include <apt-front/cache/component/history.h>
#include <adept/view.h>
#include <adept/commitprogress.h>
#include <adept/application.h>
class QVBox;
class QWidgetStack;
class QSplitter;
class KAction;
class KPushButton;
namespace adept {
class AcqProgressWidget;
}
using namespace aptFront;
using namespace adept;
class TestApp : public KMainWindow, Application {
Q_OBJECT
public:
void setupActions();
ExtTerminalInterface *terminal();
TestApp();
protected slots:
void start();
void update();
void postUpdate();
void commit();
void delayed();
void undo() { Application::undo(); }
void redo() { Application::redo(); }
void checkpoint() { Application::checkpoint(); }
void setHistoryEnabled( bool );
void disableNext();
void disableButtons();
void setNext( QString str, const char *slot,
QString qstr = i18n( "Forget Changes and Quit" ),
const char *qslot = SLOT( close() ) );
protected:
friend class WaitForLister;
virtual void notifyPostChange( cache::component::Base * );
virtual void notifyPreChange( cache::component::Base * );
QWidgetStack *m_stack;
QVBox *m_all;
QHBox *m_buttons;
QLabel *m_start, *m_bye, *m_loading;
KPushButton *m_next, *m_quit;
// stacked widgets
adept::AcqProgressWidget *m_progress;
adept::CommitProgress *m_commitProgress;
adept::Browser *m_list;
// other stuff
std::vector<KAction *> m_actions;
QMap< QString, QString > m_icons;
KAction *m_undo, *m_redo;
cache::component::History< cache::component::State > *m_history;
};
class WaitForLister : public QObject {
Q_OBJECT
public:
WaitForLister( TestApp *a, const char *s )
: app( a ), slot( s )
{
waiting();
}
protected slots:
void waiting();
protected:
TestApp *app;
const char *slot;
};
#endif
|