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
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id:
#ifndef BALL_DEMOTUTORIALDIALOG_H
#define BALL_DEMOTUTORIALDIALOG_H
#ifndef BALL_VIEW_KERNEL_MODULARWIDGET_H
# include <BALL/VIEW/KERNEL/modularWidget.h>
#endif
#ifndef BALL_VIEW_PRIMITIV_MESH_H
# include <BALL/VIEW/PRIMITIVES/mesh.h>
#endif
#include <BALL/DATATYPE/regularData3D.h>
#include "ui_demoTutorialDialog.h"
#include <QtWidgets/QDialog>
namespace BALL
{
class System;
class Composite;
namespace VIEW
{
/** Dialog for showing a demo and tutorial.
*/
class DemoTutorialDialog :
public QDialog,
public Ui_DemoTutorialDialogData,
public ModularWidget
{
Q_OBJECT
BALL_EMBEDDABLE(DemoTutorialDialog,ModularWidget)
public:
/// Default Constructor.
DemoTutorialDialog(QWidget *parent = NULL, const char *name = NULL );
/// Destructor.
virtual ~DemoTutorialDialog();
/// Message handling method.
virtual void onNotify(Message *message);
virtual void initializeWidget(MainControl& main_control);
///
void setDemoMode(bool) { tutorial_type_ = DEMO; }
///
//void setTutorialType(int type) { tutorial_type_ = type;}
public Q_SLOTS:
/// Show and raise the dialog
void show();
///
void showDemo();
///
void showTutorial();
///
void showRaytracingTutorial();
/// Next Step
void nextStepClicked();
virtual void checkMenu(MainControl& main_control);
protected:
void nextStepDemo_();
void nextStepTutorial_();
void initDemo_();
void initTutorials_();
void enableNextStep_();
virtual void onNotifyTutorial_(Message *message);
virtual void onNotifyRaytracingTutorial_(Message *message);
virtual void onNotifyDemo_(Message *message);
void addPlane_(char plane_specifier, int height, int boundary, bool bottom = true);
String getBaseDir_();
private:
enum TUTORIAL_TYPE
{
DEMO,
TUTORIAL,
RAYTRACING_TUTORIAL
};
TUTORIAL_TYPE tutorial_type_;
std::list<Composite*> composites_;
RegularData3D* grid_;
System* system_;
String prefix_;
Position current_step_;
Mesh* surface_;
QAction* demo_action_, *tutorial_action_, *raytracing_tutorial_action_;
};
} } // namespaces
#endif // BALL_DEMOTUTORIALDIALOG_H
|