i'm a beginner in Qt and i can't find a way to debug this problem, i'll try to make my problem more clear so maybe someone out there will help me,
/********************************************************************************
** Form generated from reading UI file 'widget.ui'
**
** Created: Mon Apr 16 22:29:26 2012
** by: Qt User Interface Compiler version 4.8.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_WIDGET_H
#define UI_WIDGET_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QHeaderView>
#include <QtGui/QWidget>
#include "zonesup.h"
QT_BEGIN_NAMESPACE
class Ui_Widget
{
public:
ZoneSup *resizableWidgetWithBG;
{
if (Widget->objectName().isEmpty())
Widget
->setObjectName
(QString::fromUtf8("Widget"));
Widget->resize(754, 531);
Widget->setWindowOpacity(1);
resizableWidgetWithBG = new ZoneSup(Widget);
resizableWidgetWithBG
->setObjectName
(QString::fromUtf8("resizableWidgetWithBG"));
resizableWidgetWithBG
->setGeometry
(QRect(150,
90,
221,
191));
resizableWidgetWithBG
->setMaximumSize
(QSize(221,
191));
retranslateUi(Widget);
} // setupUi
void retranslateUi
(QWidget *Widget
) {
} // retranslateUi
};
namespace Ui {
class Widget: public Ui_Widget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_WIDGET_H
/********************************************************************************
** Form generated from reading UI file 'widget.ui'
**
** Created: Mon Apr 16 22:29:26 2012
** by: Qt User Interface Compiler version 4.8.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_WIDGET_H
#define UI_WIDGET_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QHeaderView>
#include <QtGui/QWidget>
#include "zonesup.h"
QT_BEGIN_NAMESPACE
class Ui_Widget
{
public:
ZoneSup *resizableWidgetWithBG;
void setupUi(QWidget *Widget)
{
if (Widget->objectName().isEmpty())
Widget->setObjectName(QString::fromUtf8("Widget"));
Widget->resize(754, 531);
Widget->setWindowOpacity(1);
resizableWidgetWithBG = new ZoneSup(Widget);
resizableWidgetWithBG->setObjectName(QString::fromUtf8("resizableWidgetWithBG"));
resizableWidgetWithBG->setGeometry(QRect(150, 90, 221, 191));
resizableWidgetWithBG->setMaximumSize(QSize(221, 191));
retranslateUi(Widget);
QMetaObject::connectSlotsByName(Widget);
} // setupUi
void retranslateUi(QWidget *Widget)
{
Widget->setWindowTitle(QApplication::translate("Widget", "Widget", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class Widget: public Ui_Widget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_WIDGET_H
To copy to clipboard, switch view to plain text mode
a background is not working, can i try to paint something else instead ? is it a way to find out the problem?
Any idea is welcome, Best Regards
Bookmarks