Ejemplo n.º 1
0
    public ConfigurationPage(QWidget parent) {
      super(parent);
      QGroupBox configGroup = new QGroupBox(tr("Server configuration"));

      QLabel serverLabel = new QLabel(tr("Server:"));
      QComboBox serverCombo = new QComboBox();
      serverCombo.addItem(tr("Qt Software (Australia)"));
      serverCombo.addItem(tr("Qt Software (Germany)"));
      serverCombo.addItem(tr("Qt Software (Norway)"));
      serverCombo.addItem(tr("Qt Software (People's Republic of China)"));
      serverCombo.addItem(tr("Qt Software (USA)"));

      QHBoxLayout serverLayout = new QHBoxLayout();
      serverLayout.addWidget(serverLabel);
      serverLayout.addWidget(serverCombo);

      QVBoxLayout configLayout = new QVBoxLayout();
      configLayout.addLayout(serverLayout);
      configGroup.setLayout(configLayout);

      QVBoxLayout mainLayout = new QVBoxLayout();
      mainLayout.addWidget(configGroup);
      mainLayout.addStretch(1);
      setLayout(mainLayout);
    }
Ejemplo n.º 2
0
  public ConfigDialog(QWidget parent) {
    super(parent);
    contentsWidget = new QListWidget(this);
    contentsWidget.setViewMode(QListView.ViewMode.IconMode);
    contentsWidget.setIconSize(new QSize(96, 84));
    contentsWidget.setMovement(QListView.Movement.Static);
    contentsWidget.setMaximumWidth(128);
    contentsWidget.setSpacing(12);

    pagesWidget = new QStackedWidget(this);
    pagesWidget.addWidget(new ConfigurationPage(this));
    pagesWidget.addWidget(new UpdatePage(this));
    pagesWidget.addWidget(new QueryPage(this));

    QPushButton closeButton = new QPushButton(tr("Close"));

    createIcons();
    contentsWidget.setCurrentRow(0);

    closeButton.clicked.connect(this, "close()");

    QHBoxLayout horizontalLayout = new QHBoxLayout();
    horizontalLayout.addWidget(contentsWidget);
    horizontalLayout.addWidget(pagesWidget, 1);

    QHBoxLayout buttonsLayout = new QHBoxLayout();
    buttonsLayout.addStretch(1);
    buttonsLayout.addWidget(closeButton);

    QVBoxLayout mainLayout = new QVBoxLayout();
    mainLayout.addLayout(horizontalLayout);
    mainLayout.addStretch(1);
    mainLayout.addSpacing(12);
    mainLayout.addLayout(buttonsLayout);
    setLayout(mainLayout);

    setWindowTitle(tr("Config Dialog"));
    setWindowIcon(new QIcon("classpath:com/trolltech/images/qt-logo.png"));
  }