maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   Qt remove styles, QSound and QDialog. (https://talk.maemo.org/showthread.php?t=49199)

Figa 2010-04-04 19:15

Qt remove styles, QSound and QDialog.
 
Hi I have some questions.
1) Is there any way how remove hildon style from QPushButton?
2)Is there any compensation for QSound?Maybe in future?
3)Is possible add widgets to QDialog?

Thx for your replies.

mikec 2010-04-04 23:36

Re: Qt remove styles, QSound and QDialog.
 
you can use css style sheets on all Qpushbuttons
see my app ncalc in the repos for example.

Figa 2010-04-05 18:19

Re: Qt remove styles, QSound and QDialog.
 
Thank you. What about my othr question?

mikec 2010-04-05 20:45

Re: Qt remove styles, QSound and QDialog.
 
not sure about Qt Sound but for Dialog here is an example fo dialog with a button and text label produced from QtDesigner in Python

Code:

from PyQt4 import QtCore, QtGui

class Ui_Dialog(object):
    def setupUi(self, Dialog):
        Dialog.setObjectName("Dialog")
        Dialog.resize(400, 300)
        self.pushButton = QtGui.QPushButton(Dialog)
        self.pushButton.setGeometry(QtCore.QRect(0, 10, 84, 23))
        self.pushButton.setObjectName("pushButton")
        self.label = QtGui.QLabel(Dialog)
        self.label.setGeometry(QtCore.QRect(10, 40, 55, 15))
        self.label.setObjectName("label")

        self.retranslateUi(Dialog)
        QtCore.QMetaObject.connectSlotsByName(Dialog)

    def retranslateUi(self, Dialog):
        Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
        self.pushButton.setText(QtGui.QApplication.translate("Dialog", "PushButton", None, QtGui.QApplication.UnicodeUTF8))
        self.label.setText(QtGui.QApplication.translate("Dialog", "TextLabel", None, QtGui.QApplication.UnicodeUTF8))


if __name__ == "__main__":
    import sys
    app = QtGui.QApplication(sys.argv)
    Dialog = QtGui.QDialog()
    ui = Ui_Dialog()
    ui.setupUi(Dialog)
    Dialog.show()
    sys.exit(app.exec_())


Figa 2010-04-05 20:54

Re: Qt remove styles, QSound and QDialog.
 
Thank you. I am sorry but I need c++ example.

danielwilms 2010-04-06 13:53

Re: Qt remove styles, QSound and QDialog.
 
Quote:

Originally Posted by Figa (Post 595280)
Hi I have some questions.
2)Is there any compensation for QSound?Maybe in future?

What do you mean with compensation? You could have a look at Phonon.

Quote:

Originally Posted by Figa (Post 595280)
3)Is possible add widgets to QDialog?

Set a QDialog as a parent of a widget and use for example the setGeometry function to place the widget in the dialog. I think the python example shows well how it works and is adaptable to plain Qt. Try it out and if you have further questions, just ask.

Daniel

mikec 2010-04-06 15:05

Re: Qt remove styles, QSound and QDialog.
 
Quote:

Originally Posted by Figa (Post 596840)
Thank you. I am sorry but I need c++ example.

I dont do C++

but QtDesigner does !! :D

Code:

/********************************************************************************
** Form generated from reading UI file 'dialog.ui'
**
** Created
**      by: Qt User Interface Compiler version 4.6.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
******************************************************************************/

#ifndef DIALOG_H
#define DIALOG_H

#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QPushButton>

QT_BEGIN_NAMESPACE

class Ui_Dialog
{
public:
    QPushButton *pushButton;
    QLabel *label;

    void setupUi(QDialog *Dialog)
    {
        if (Dialog->objectName().isEmpty())
            Dialog->setObjectName(QString::fromUtf8("Dialog"));
        Dialog->resize(400, 300);
        pushButton = new QPushButton(Dialog);
        pushButton->setObjectName(QString::fromUtf8("pushButton"));
        pushButton->setGeometry(QRect(0, 10, 84, 23));
        label = new QLabel(Dialog);
        label->setObjectName(QString::fromUtf8("label"));
        label->setGeometry(QRect(10, 40, 55, 15));

        retranslateUi(Dialog);

        QMetaObject::connectSlotsByName(Dialog);
    } // setupUi

    void retranslateUi(QDialog *Dialog)
    {
        Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", 0, QApplication::UnicodeUTF8));
        pushButton->setText(QApplication::translate("Dialog", "PushButton", 0, QApplication::UnicodeUTF8));
        label->setText(QApplication::translate("Dialog", "TextLabel", 0, QApplication::UnicodeUTF8));
    } // retranslateUi

};

namespace Ui {
    class Dialog: public Ui_Dialog {};
} // namespace Ui

QT_END_NAMESPACE

#endif // DIALOG_H



All times are GMT. The time now is 07:14.

vBulletin® Version 3.8.8