Package com.trolltech.qt.gui

Examples of com.trolltech.qt.gui.QVBoxLayout.addWidget()


    convertToLocal.setText(tr("Convert this notebook to a local notebook and keep all notes"));
    convertToShared = new QRadioButton(this);
    convertToShared.setText(tr("Convert this notebook to a shared notebook and keep all notes"));
   
    QVBoxLayout optionLayout = new QVBoxLayout();
    optionLayout.addWidget(doNothing);
    optionLayout.addWidget(deleteNotebook);
//    optionLayout.addWidget(convertToLocal);
//    optionLayout.addWidget(convertToShared);
    choiceGroup.setLayout(optionLayout);
    vLayout.addWidget(choiceGroup);
View Full Code Here


    convertToShared = new QRadioButton(this);
    convertToShared.setText(tr("Convert this notebook to a shared notebook and keep all notes"));
   
    QVBoxLayout optionLayout = new QVBoxLayout();
    optionLayout.addWidget(doNothing);
    optionLayout.addWidget(deleteNotebook);
//    optionLayout.addWidget(convertToLocal);
//    optionLayout.addWidget(convertToShared);
    choiceGroup.setLayout(optionLayout);
    vLayout.addWidget(choiceGroup);
   
View Full Code Here

    useridGroup.setLayout(useridLayout);
    proxyGroup.setLayout(proxyLayout);
   
    // Add everything together
    QVBoxLayout mainLayout = new QVBoxLayout();
    mainLayout.addWidget(useridGroup);
    mainLayout.addWidget(proxyGroup);
    mainLayout.addStretch(1);
    setLayout(mainLayout);
   
  }
View Full Code Here

    proxyGroup.setLayout(proxyLayout);
   
    // Add everything together
    QVBoxLayout mainLayout = new QVBoxLayout();
    mainLayout.addWidget(useridGroup);
    mainLayout.addWidget(proxyGroup);
    mainLayout.addStretch(1);
    setLayout(mainLayout);
   
  }
View Full Code Here

    fileCombo.currentIndexChanged.connect(this, "indexChanged(Integer)");
   
    main.addLayout(comboLayout);
       
    textField = new QTextEdit(this);
    main.addWidget(textField);
   
    fileCombo.addItem(tr("Message Log"), "MessageLog");
    fileCombo.addItem(tr("Application Log"), "NeverNoteLog");
    fileCombo.addItem(tr("Synchronization Log"), "SyncLog");
    fileCombo.addItem(tr("Save Log"), "SaveLog");
View Full Code Here

    this.url = new QLineEdit();
    this.url.textChanged.connect(this, "urlEdited()");
    urlLayout.addWidget(this.url);
   
    QVBoxLayout textEditLayout = new QVBoxLayout();
    textEditLayout.addWidget(new QLabel(tr("Notebook: ") +n.getName()));
    textEditLayout.addWidget(new QLabel(tr("Public URL")));
    textEditLayout.addLayout(urlLayout);
    textEditLayout.addWidget(new QLabel(tr("Description")));
    description = new QTextEdit();
    textEditLayout.addWidget(description);
View Full Code Here

    this.url.textChanged.connect(this, "urlEdited()");
    urlLayout.addWidget(this.url);
   
    QVBoxLayout textEditLayout = new QVBoxLayout();
    textEditLayout.addWidget(new QLabel(tr("Notebook: ") +n.getName()));
    textEditLayout.addWidget(new QLabel(tr("Public URL")));
    textEditLayout.addLayout(urlLayout);
    textEditLayout.addWidget(new QLabel(tr("Description")));
    description = new QTextEdit();
    textEditLayout.addWidget(description);
   
View Full Code Here

   
    QVBoxLayout textEditLayout = new QVBoxLayout();
    textEditLayout.addWidget(new QLabel(tr("Notebook: ") +n.getName()));
    textEditLayout.addWidget(new QLabel(tr("Public URL")));
    textEditLayout.addLayout(urlLayout);
    textEditLayout.addWidget(new QLabel(tr("Description")));
    description = new QTextEdit();
    textEditLayout.addWidget(description);
   
    sortedBy = new QComboBox(this);
    sortOrder = new QComboBox(this);
View Full Code Here

    textEditLayout.addWidget(new QLabel(tr("Notebook: ") +n.getName()));
    textEditLayout.addWidget(new QLabel(tr("Public URL")));
    textEditLayout.addLayout(urlLayout);
    textEditLayout.addWidget(new QLabel(tr("Description")));
    description = new QTextEdit();
    textEditLayout.addWidget(description);
   
    sortedBy = new QComboBox(this);
    sortOrder = new QComboBox(this);
    QHBoxLayout orderLayout = new QHBoxLayout();
    orderLayout.addWidget(new QLabel(tr("Sort By")));
View Full Code Here

    setIgnoreMixedCase(Global.getSpellSetting(Configuration.SPELL_IGNOREMIXEDCASE));
    setIgnoreUpperCase(Global.getSpellSetting(Configuration.SPELL_IGNOREUPPERCASE));
    setIgnoreSentenceCapitalization(Global.getSpellSetting(Configuration.SPELL_IGNORESENTENCECAPITALIZATION));
   
    QVBoxLayout mainLayout = new QVBoxLayout();
    mainLayout.addWidget(ignoreDigitWords);
    mainLayout.addWidget(ignoreInternetAddresses);
    mainLayout.addWidget(ignoreMixedCase);
    mainLayout.addWidget(ignoreUpperCase);
    mainLayout.addWidget(ignoreSentenceCapitalization);
    mainLayout.addStretch(1);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.