コード例 #1
0
 void ImageViewerScreen::createUI()
 {
     setupMainLayout();
     setupImageView();
     setupButtons();
     setupActivityIndicator();
     arrangeWidgets();
 }
コード例 #2
0
ファイル: CameraScreen.cpp プロジェクト: Felard/MoSync
	void CameraScreen::createUI()
	{
        setupMainLayout();
		setupCamera();
		setupButtons();
		setupActivityIndicator();
		arrangeWidgets();
	}
コード例 #3
0
StandbyWindow::StandbyWindow() : BottomWindow(), currentWindowFlag(StandbyFlag)
{
    standbyWindowTitle = "Standby Window";
    mainTitle->setText(standbyWindowTitle);
    setupMainLayout();
    setupButtonLayout();


}
コード例 #4
0
ファイル: ui.cpp プロジェクト: laptopc700/pcl-exam-project
//PUBLIC FUNCTIONS
Ui::Ui(Pcqc *pcqc)
{
    motor = pcqc;
    createActions();
    setupMenuBar();
    setupStatusBar();
    setupMainLayout();
    setWindowTitle(tr("PCQC - Point Cloud Quality Control"));
    resize(1024,768);
}
コード例 #5
0
SampleView::SampleView(QWidget *parent)
    : QWidget(parent) {

    // Add sample dialog will be instansiated upon Add Sample request.
    addSampleDialog_ = 0;

    setupModel();
    setupMainLayout();
    setupMainConnections();

    setWindowTitle("Sample Manager 1.0 - David Leacock");
}