Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
Daniil, Robin or anyone 

did you get a chance to look at this one please ?

thanks for your time,

cheers
krk969

- Original Message -
From: Ram Kurvakat
Sent: 05/29/10 10:32 AM
To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov
Subject: Re: QT4.6 with PR1.2 has introduced issues

Here is the example requested.

Compile the example with qmake from * /opt/qt4-maemo5/bin* which is QT4.6 in 
PR1.1 and run on the device with QT4.6 libs from PR1.1 installed in  
*/opt/qt4-maemo5/lib*
 *~$: ldd TEMP2*

libQtGui.so.4 = /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000)
libQtCore.so.4 = /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)


 *and this is the* *result*
http://bit.ly/bH2ApK http://bit.ly/bH2ApK 

Then
Compile the example with qmake from * /usr/bin* which is QT4.6 in PR1.2 and run 
on the device with QT4.6 libs from PR1.2 installed in  */usr/lib*
 *~$: ldd TEMP2*

libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x40139000)
libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x40bf4000)



 *and you will see this*
http://bit.ly/bIpRi0 http://bit.ly/bIpRi0 

I think some default alignments may have been changed in the styles.
Thanks again for taking a look.

#include QtGui
#include QApplication

int main(int argc, char* argv[])
{
 QApplication app(argc, argv);

 QDialog *dialog = new QDialog;

 QScrollArea *scroll = new QScrollArea;
 QWidget* widget = new QWidget(scroll);

 // Currency code
 QLineEdit *currency = new QLineEdit(dialog);

 // Date format
 QStringList dateformatlist;
 dateformatlist  dd-MM-  MM-dd-  dd-MMM-  
MMM-dd-;
 QComboBox *dateformat = new QComboBox;

 // Graph Period
 QStringList periodlist;
 periodlist  current day  current month  current week  current 
year;
 QComboBox *graphperiod = new QComboBox;

 dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ; border-radius: 
15px; });

 QFormLayout *layout = new QFormLayout;
 layout-addRow(currency code : , currency);
 layout-addRow(display date format : , dateformat);
 layout-addRow(default reports period: , graphperiod);
 widget-setLayout(layout);

 QHBoxLayout *mainlayout = new QHBoxLayout;

 scroll-setWidget(widget);
 mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);

 dialog-setLayout(mainlayout);
 dialog-show();

 return app.exec();
}
- Original Message -
From: Robin Burchell
Sent: 05/28/10 10:36 AM
To: Daniil Ivanov
Subject: Re: QT4.6 with PR1.2 has introduced issues

On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov daniil.iva...@gmail.com wrote: 
 Hi Ram!   Screenshots do not say anything.  Without seeing the code it's 
not possible to say if it's because of  problems with the way how you 
constructed layouts of the widgets  or with Qt styles. Seconding what Daniil 
says - to try pinpoint your issue (and look for workarounds or fixes), please 
produce a minimal testcase. That is, a *minimal* example (as little code as 
possible, please! can't emphasise how important this is) which demonstrates the 
incorrect behaviour you are talking about. :)  Thanks, Daniil. Best, Robin 
Burchell mob: +447702671419 msn: m...@viroteck.net irc: w00t @ irc.freenode.net 
twr: http://twitter.com/w00teh http://twitter.com/w00teh  lac: 
http://identi.ca/w00t http://identi.ca/w00t
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Daniil Ivanov
Hi Ram!

  Could you please post this questions to FN DiBo?
  BTW, why do create dialog dynamically and never free it?

Thanks, Daniil.

On Tue, Jun 1, 2010 at 10:59 AM, Ram Kurvakat rkma...@gmx.com wrote:
 Daniil, Robin or anyone

 did you get a chance to look at this one please ?

 thanks for your time,

 cheers

 krk969

 - Original Message -

 From: Ram Kurvakat

 Sent: 05/29/10 10:32 AM

 To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov

 Subject: Re: QT4.6 with PR1.2 has introduced issues

 Here is the example requested.

 Compile the example with qmake from /opt/qt4-maemo5/bin which is QT4.6 in
 PR1.1 and run on the device with QT4.6 libs from PR1.1 installed in
 /opt/qt4-maemo5/lib

 ~$:  ldd TEMP2

 

 libQtGui.so.4 = /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000)

 libQtCore.so.4 = /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)

 

 and this is the result

 http://bit.ly/bH2ApK

 Then

 Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2 and run
 on the device with QT4.6 libs from PR1.2 installed in /usr/lib

 ~$:  ldd TEMP2

 

 libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x40139000)

 libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x40bf4000)

 

 and you will see this

 http://bit.ly/bIpRi0

 I think some default alignments may have been changed in the styles.

 Thanks again for taking a look.

 #include QtGui

 #include QApplication

 int main(int argc, char* argv[])

 {

     QApplication app(argc, argv);

     QDialog *dialog = new QDialog;

     QScrollArea *scroll = new QScrollArea;

     QWidget*    widget = new QWidget(scroll);

     // Currency code

     QLineEdit *currency = new QLineEdit(dialog);

     // Date format

     QStringList dateformatlist;

     dateformatlist  dd-MM-  MM-dd-  dd-MMM- 
 MMM-dd-;

     QComboBox *dateformat = new QComboBox;

     // Graph Period

     QStringList periodlist;

     periodlist  current day  current month  current week 
 current year;

     QComboBox *graphperiod = new QComboBox;

     dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;
 border-radius: 15px; });

     QFormLayout *layout = new QFormLayout;

     layout-addRow(currency code : , currency);

     layout-addRow(display date format : , dateformat);

     layout-addRow(default reports period: , graphperiod);

     widget-setLayout(layout);

     QHBoxLayout *mainlayout = new QHBoxLayout;

     scroll-setWidget(widget);

     mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);

     dialog-setLayout(mainlayout);
     dialog-show();
     return app.exec();
 }

 - Original Message -

 From: Robin Burchell

 Sent: 05/28/10 10:36 AM

 To: Daniil Ivanov

 Subject: Re: QT4.6 with PR1.2 has introduced issues

 On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov daniil.iva...@gmail.com
 wrote:  Hi Ram!    Screenshots do not say anything.   Without seeing the
 code it's not possible to say if it's because of   problems with the way
 how you constructed layouts of the widgets   or with Qt styles.  Seconding
 what Daniil says - to try pinpoint your issue (and look for workarounds or
 fixes), please produce a minimal testcase.  That is, a *minimal* example (as
 little code as possible, please! can't emphasise how important this is)
 which demonstrates the incorrect behaviour you are talking about. :)  
 Thanks, Daniil.  Best,  Robin Burchell mob: +447702671419 msn:
 m...@viroteck.net irc: w00t @ irc.freenode.net twr: http://twitter.com/w00teh
 lac: http://identi.ca/w00t








___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Daniil Ivanov
Hi Ram!

  It looks like an actual bug with calculation background rectangle.

Thanks, Daniil.

On Tue, Jun 1, 2010 at 11:13 AM, Daniil Ivanov daniil.iva...@gmail.com wrote:
 Hi Ram!

  Could you please post this questions to FN DiBo?
  BTW, why do create dialog dynamically and never free it?

 Thanks, Daniil.

 On Tue, Jun 1, 2010 at 10:59 AM, Ram Kurvakat rkma...@gmx.com wrote:
 Daniil, Robin or anyone

 did you get a chance to look at this one please ?

 thanks for your time,

 cheers

 krk969

 - Original Message -

 From: Ram Kurvakat

 Sent: 05/29/10 10:32 AM

 To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov

 Subject: Re: QT4.6 with PR1.2 has introduced issues

 Here is the example requested.

 Compile the example with qmake from /opt/qt4-maemo5/bin which is QT4.6 in
 PR1.1 and run on the device with QT4.6 libs from PR1.1 installed in
 /opt/qt4-maemo5/lib

 ~$:  ldd TEMP2

 

 libQtGui.so.4 = /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000)

 libQtCore.so.4 = /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)

 

 and this is the result

 http://bit.ly/bH2ApK

 Then

 Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2 and run
 on the device with QT4.6 libs from PR1.2 installed in /usr/lib

 ~$:  ldd TEMP2

 

 libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x40139000)

 libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x40bf4000)

 

 and you will see this

 http://bit.ly/bIpRi0

 I think some default alignments may have been changed in the styles.

 Thanks again for taking a look.

 #include QtGui

 #include QApplication

 int main(int argc, char* argv[])

 {

     QApplication app(argc, argv);

     QDialog *dialog = new QDialog;

     QScrollArea *scroll = new QScrollArea;

     QWidget*    widget = new QWidget(scroll);

     // Currency code

     QLineEdit *currency = new QLineEdit(dialog);

     // Date format

     QStringList dateformatlist;

     dateformatlist  dd-MM-  MM-dd-  dd-MMM- 
 MMM-dd-;

     QComboBox *dateformat = new QComboBox;

     // Graph Period

     QStringList periodlist;

     periodlist  current day  current month  current week 
 current year;

     QComboBox *graphperiod = new QComboBox;

     dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;
 border-radius: 15px; });

     QFormLayout *layout = new QFormLayout;

     layout-addRow(currency code : , currency);

     layout-addRow(display date format : , dateformat);

     layout-addRow(default reports period: , graphperiod);

     widget-setLayout(layout);

     QHBoxLayout *mainlayout = new QHBoxLayout;

     scroll-setWidget(widget);

     mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);

     dialog-setLayout(mainlayout);
     dialog-show();
     return app.exec();
 }

 - Original Message -

 From: Robin Burchell

 Sent: 05/28/10 10:36 AM

 To: Daniil Ivanov

 Subject: Re: QT4.6 with PR1.2 has introduced issues

 On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov daniil.iva...@gmail.com
 wrote:  Hi Ram!    Screenshots do not say anything.   Without seeing the
 code it's not possible to say if it's because of   problems with the way
 how you constructed layouts of the widgets   or with Qt styles.  Seconding
 what Daniil says - to try pinpoint your issue (and look for workarounds or
 fixes), please produce a minimal testcase.  That is, a *minimal* example (as
 little code as possible, please! can't emphasise how important this is)
 which demonstrates the incorrect behaviour you are talking about. :)  
 Thanks, Daniil.  Best,  Robin Burchell mob: +447702671419 msn:
 m...@viroteck.net irc: w00t @ irc.freenode.net twr: http://twitter.com/w00teh
 lac: http://identi.ca/w00t









___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat

--
Sent from my Nokia N900

- Original message -
 Hi Ram!
 
     Could you please post this questions to FN DiBo?
A
Hi Daniil, yes of course i can.
I was asked for examples here so i replied.
FN DiBo = forum nokia discussion board ?
 
     BTW, why do create dialog dynamically and never free it?

This is an example only to show the issue.

 Thanks, Daniil.
 
 On Tue, Jun 1, 2010 at 10:59 AM, Ram Kurvakat rkma...@gmx.com wrote:
  Daniil, Robin or anyone
  
  did you get a chance to look at this one please ?
  
  thanks for your time,
  
  cheers
  
  krk969
  
  - Original Message -
  
  From: Ram Kurvakat
  
  Sent: 05/29/10 10:32 AM
  
  To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov
  
  Subject: Re: QT4.6 with PR1.2 has introduced issues
  
  Here is the example requested.
  
  Compile the example with qmake from /opt/qt4-maemo5/bin which is QT4.6
  in PR1.1 and run on the device with QT4.6 libs from PR1.1 installed in
  /opt/qt4-maemo5/lib
  
  ~$:  ldd TEMP2
  
  
  
  libQtGui.so.4 = /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000)
  
  libQtCore.so.4 = /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)
  
  
  
  and this is the result
  
  http://bit.ly/bH2ApK
  
  Then
  
  Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2
  and run on the device with QT4.6 libs from PR1.2 installed in /usr/lib
  
  ~$:  ldd TEMP2
  
  
  
  libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x40139000)
  
  libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x40bf4000)
  
  
  
  and you will see this
  
  http://bit.ly/bIpRi0
  
  I think some default alignments may have been changed in the styles.
  
  Thanks again for taking a look.
  
  #include QtGui
  
  #include QApplication
  
  int main(int argc, char* argv[])
  
  {
  
      QApplication app(argc, argv);
  
      QDialog *dialog = new QDialog;
  
      QScrollArea *scroll = new QScrollArea;
  
      QWidget*    widget = new QWidget(scroll);
  
      // Currency code
  
      QLineEdit *currency = new QLineEdit(dialog);
  
      // Date format
  
      QStringList dateformatlist;
  
      dateformatlist  dd-MM-  MM-dd-  dd-MMM- 
  MMM-dd-;
  
      QComboBox *dateformat = new QComboBox;
  
      // Graph Period
  
      QStringList periodlist;
  
      periodlist  current day  current month  current week 
  current year;
  
      QComboBox *graphperiod = new QComboBox;
  
      dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;
  border-radius: 15px; });
  
      QFormLayout *layout = new QFormLayout;
  
      layout-addRow(currency code : , currency);
  
      layout-addRow(display date format : , dateformat);
  
      layout-addRow(default reports period: , graphperiod);
  
      widget-setLayout(layout);
  
      QHBoxLayout *mainlayout = new QHBoxLayout;
  
      scroll-setWidget(widget);
  
      mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);
  
      dialog-setLayout(mainlayout);
      dialog-show();
      return app.exec();
  }
  
  - Original Message -
  
  From: Robin Burchell
  
  Sent: 05/28/10 10:36 AM
  
  To: Daniil Ivanov
  
  Subject: Re: QT4.6 with PR1.2 has introduced issues
  
  On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov
  daniil.iva...@gmail.com wrote:  Hi Ram!    Screenshots do not say
  anything.   Without seeing the code it's not possible to say if it's
  because of   problems with the way how you constructed layouts of the
  widgets   or with Qt styles.   Seconding what Daniil says - to try
  pinpoint your issue (and look for workarounds or fixes), please
  produce a minimal testcase.   That is, a *minimal* example (as little
  code as possible, please! can't emphasise how important this is) which
  demonstrates the incorrect behaviour you are talking about. :)   
  Thanks, Daniil.   Best,   Robin Burchell mob: +447702671419 msn:
  m...@viroteck.net irc: w00t @ irc.freenode.net twr:
  http://twitter.com/w00teh lac: http://identi.ca/w00t
  
  
  
  
  
  
  
  

___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Daniil Ivanov
On Tue, Jun 1, 2010 at 12:00 PM, Ram Kurvakat rkma...@gmx.com wrote:

 --
 Sent from my Nokia N900

 - Original message -
 Hi Ram!

    Could you please post this questions to FN DiBo?
 A
 Hi Daniil, yes of course i can.
 I was asked for examples here so i replied.
 FN DiBo = forum nokia discussion board ?

  Yes.

    BTW, why do create dialog dynamically and never free it?

 This is an example only to show the issue.

  This is basically a bad habit.

Thanks, Daniil.

 Thanks, Daniil.

 On Tue, Jun 1, 2010 at 10:59 AM, Ram Kurvakat rkma...@gmx.com wrote:
  Daniil, Robin or anyone
 
  did you get a chance to look at this one please ?
 
  thanks for your time,
 
  cheers
 
  krk969
 
  - Original Message -
 
  From: Ram Kurvakat
 
  Sent: 05/29/10 10:32 AM
 
  To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov
 
  Subject: Re: QT4.6 with PR1.2 has introduced issues
 
  Here is the example requested.
 
  Compile the example with qmake from /opt/qt4-maemo5/bin which is QT4.6
  in PR1.1 and run on the device with QT4.6 libs from PR1.1 installed in
  /opt/qt4-maemo5/lib
 
  ~$:  ldd TEMP2
 
  
 
  libQtGui.so.4 = /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000)
 
  libQtCore.so.4 = /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)
 
  
 
  and this is the result
 
  http://bit.ly/bH2ApK
 
  Then
 
  Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2
  and run on the device with QT4.6 libs from PR1.2 installed in /usr/lib
 
  ~$:  ldd TEMP2
 
  
 
  libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x40139000)
 
  libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x40bf4000)
 
  
 
  and you will see this
 
  http://bit.ly/bIpRi0
 
  I think some default alignments may have been changed in the styles.
 
  Thanks again for taking a look.
 
  #include QtGui
 
  #include QApplication
 
  int main(int argc, char* argv[])
 
  {
 
      QApplication app(argc, argv);
 
      QDialog *dialog = new QDialog;
 
      QScrollArea *scroll = new QScrollArea;
 
      QWidget*    widget = new QWidget(scroll);
 
      // Currency code
 
      QLineEdit *currency = new QLineEdit(dialog);
 
      // Date format
 
      QStringList dateformatlist;
 
      dateformatlist  dd-MM-  MM-dd-  dd-MMM- 
  MMM-dd-;
 
      QComboBox *dateformat = new QComboBox;
 
      // Graph Period
 
      QStringList periodlist;
 
      periodlist  current day  current month  current week 
  current year;
 
      QComboBox *graphperiod = new QComboBox;
 
      dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;
  border-radius: 15px; });
 
      QFormLayout *layout = new QFormLayout;
 
      layout-addRow(currency code : , currency);
 
      layout-addRow(display date format : , dateformat);
 
      layout-addRow(default reports period: , graphperiod);
 
      widget-setLayout(layout);
 
      QHBoxLayout *mainlayout = new QHBoxLayout;
 
      scroll-setWidget(widget);
 
      mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);
 
      dialog-setLayout(mainlayout);
      dialog-show();
      return app.exec();
  }
 
  - Original Message -
 
  From: Robin Burchell
 
  Sent: 05/28/10 10:36 AM
 
  To: Daniil Ivanov
 
  Subject: Re: QT4.6 with PR1.2 has introduced issues
 
  On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov
  daniil.iva...@gmail.com wrote:  Hi Ram!    Screenshots do not say
  anything.   Without seeing the code it's not possible to say if it's
  because of   problems with the way how you constructed layouts of the
  widgets   or with Qt styles.  Seconding what Daniil says - to try
  pinpoint your issue (and look for workarounds or fixes), please
  produce a minimal testcase.  That is, a *minimal* example (as little
  code as possible, please! can't emphasise how important this is) which
  demonstrates the incorrect behaviour you are talking about. :)  
  Thanks, Daniil.  Best,  Robin Burchell mob: +447702671419 msn:
  m...@viroteck.net irc: w00t @ irc.freenode.net twr:
  http://twitter.com/w00teh lac: http://identi.ca/w00t
 
 
 
 
 
 
 
 


___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
- Original Message -
From: Daniil Ivanov
Sent: 06/01/10 10:44 AM
To: Ram Kurvakat
Subject: Re: QT4.6 with PR1.2 has introduced issues

On Tue, Jun 1, 2010 at 12:00 PM, Ram Kurvakat rkma...@gmx.com wrote:   --  
Sent from my Nokia N900   - Original message -  Hi Ram!   Could 
you please post this questions to FN DiBo?  A  Hi Daniil, yes of course i 
can.  I was asked for examples here so i replied.  FN DiBo = forum nokia 
discussion board ? Yes.FN DiBo post as requested == 
http://discussion.forum.nokia.com/forum/showthread.php?p=742765 
http://discussion.forum.nokia.com/forum/showthread.php?p=742765 

Also took the liberty to raise a bug 
:)http://bugreports.qt.nokia.com/browse/QTBUG-11135 
http://bugreports.qt.nokia.com/browse/QTBUG-11135 

  BTW, why do create dialog dynamically and never free it?   This is an 
  example only to show the issue. This is basically a bad habit.Of course Im 
  aware Daniil :-) thanks anyways ,but now since you state that where do you 
  expect to see the delete of the dialog in this main function ;-) Thanks, 
  Daniil.  Thanks, Daniil.   On Tue, Jun 1, 2010 at 10:59 AM, Ram 
  Kurvakat rkma...@gmx.com wrote:   Daniil, Robin or anyone 
  did you get a chance to look at this one please ? thanks for your 
  time, cheers krk969 - Original Message 
  - From: Ram Kurvakat Sent: 05/29/10 10:32 AM   
To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov 
  Subject: Re: QT4.6 with PR1.2 has introduced issues Here is the 
  example requested. Compile the example with qmake from 
  /opt/qt4-maemo5/bin which is QT4.6   in PR1.1 and run on the device with 
  QT4.6 libs from PR1.1 installed in 
   /opt/qt4-maemo5/lib ~$: ldd TEMP2  
   libQtGui.so.4 = /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000) 
   libQtCore.so.4 = /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)
 and this is the result http://bit.ly/bH2ApK  
  Then Compile the example with qmake from /usr/bin which 
   is QT4.6 in PR1.2   and run on the device with QT4.6 libs from PR1.2 
   installed in /usr/lib ~$: ldd TEMP2  
   libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x40139000) 
   libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x40bf4000)    
 and you will see this http://bit.ly/bIpRi0 I 
   think some default alignments may have been changed in the styles.
Thanks again for taking a look. #include QtGui 
   #include QApplication int main(int argc, char* argv[])
{ QApplication app(argc, argv);   
   QDialog *dialog = new QDialog; QScrollArea *scroll = new 
   QScrollArea; QWidget* widget = new QWidget(scroll); 
   // Currency code QLineEdit *currency = new QLineEdit(dialog); 
   // Date format QStringList dateformatlist; 
   dateformatlist  dd-MM-  MM-dd-  dd-MMM-
   MMM-dd-; QComboBox *dateformat = new QComboBox; 
   // Graph Period QStringList periodlist; periodlist  
   current day  current month  current weekcurrent 
   year; QComboBox *graphperiod = new QComboBox; 
   dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;   
   border-radius: 15px; }); QFormLayout *layout = new 
   QFormLayout; layout-addRow(currency code : , currency);   
 layout-addRow(display date format : , dateformat); 
   layout-addRow(default reports period: , graphperiod); widget
 -setLayout(layout); QHBoxLayout *mainlayout = new QHBoxLayout;   
  scroll-setWidget(widget); mainlayout-addWidget(scroll, 0, 
Qt::AlignVCenter); dialog-setLayout(mainlayout);   
dialog-show();   return app.exec();   } - Original Message 
- From: Robin Burchell Sent: 05/28/10 10:36 AM
 To: Daniil Ivanov Subject: Re: QT4.6 with PR1.2 has introduced 
issues On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov   
daniil.iva...@gmail.com wrote:  Hi Ram!   Screenshots do not say   
anything.  Without seeing the code it's not possible to say if it's   
because of  problems with the way how you constructed layouts of the   
widgets  or with Qt styles. Seconding what Daniil says - to try   pinpoint 
your issue (and look for workarounds or fixes), please   produce a minimal 
testcase. That is, a *minimal* example (as little   code as possible, 
please! can't
  emphasise how important this is) which   demonstrates the incorrect 
behaviour you are talking about. :)Thanks, Daniil. Best, Robin Burchell 
mob: +447702671419 msn:   m...@viroteck.net irc: w00t @ irc.freenode.net 
twr:   http://twitter.com/w00teh lac: http://identi.ca/w00t   
   
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Daniil Ivanov
On Tue, Jun 1, 2010 at 1:16 PM, Ram Kurvakat rkma...@gmx.com wrote:

 - Original Message -

 From: Daniil Ivanov

 Sent: 06/01/10 10:44 AM

 To: Ram Kurvakat

 Subject: Re: QT4.6 with PR1.2 has introduced issues

 On Tue, Jun 1, 2010 at 12:00 PM, Ram Kurvakat rkma...@gmx.com wrote:  
 --  Sent from my Nokia N900   - Original message -  Hi Ram! 
    Could you please post this questions to FN DiBo?  A  Hi Daniil, yes
 of course i can.  I was asked for examples here so i replied.  FN DiBo =
 forum nokia discussion board ?Yes.

 FN DiBo post as requested ==
 http://discussion.forum.nokia.com/forum/showthread.php?p=742765

 Also took the liberty to raise a bug :)

 http://bugreports.qt.nokia.com/browse/QTBUG-11135

      BTW, why do create dialog dynamically and never free it?   This is
 an example only to show the issue.This is basically a bad habit.

 Of course Im aware Daniil :-) thanks anyways ,

 but now since you state that where do you expect to see the delete of the
 dialog in this main function ;-)

  In proper place, of course:

QDialog *dialog = new QDialog;
dialog-show();

int ret = app.exec();

delete dialog;
return ret;

   But in fact it's much easier to allocate dialog statically.

Thanks, Daniil.


  Thanks, Daniil.   Thanks, Daniil.   On Tue, Jun 1, 2010 at 10:59 AM,
 Ram Kurvakat rkma...@gmx.com wrote:   Daniil, Robin or anyone
 did you get a chance to look at this one please ? thanks for your
 time, cheers krk969 - Original Message
 - From: Ram Kurvakat Sent: 05/29/10 10:32 AM   
 To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov
 Subject: Re: QT4.6 with PR1.2 has introduced issues Here is the
 example requested. Compile the example with qmake from
 /opt/qt4-maemo5/bin which is QT4.6   in PR1.1 and run on the device with
 QT4.6 libs from PR1.1 installed in   /opt/qt4-maemo5/lib ~$:
  ldd TEMP2  libQtGui.so.4 =
 /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000) libQtCore.so.4 =
 /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000)  and
 this is the result http://bit.ly/bH2ApK Then
 Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2  
 and run on the device with QT4.6 libs from PR1.2 installed in /usr/lib  
  ~$:  ldd TEMP2  libQtGui.so.4 =
 /usr/lib/libQtGui.so.4 (0x40139000) libQtCore.so.4 =
 /usr/lib/libQtCore.so.4 (0x40bf4000)  and you will
 see this http://bit.ly/bIpRi0 I think some default
 alignments may have been changed in the styles. Thanks again for
 taking a look. #include QtGui #include QApplication
int main(int argc, char* argv[]) {
  QApplication app(argc, argv);     QDialog *dialog = new QDialog;
    QScrollArea *scroll = new QScrollArea;     QWidget*
    widget = new QWidget(scroll);     // Currency code
  QLineEdit *currency = new QLineEdit(dialog);     // Date format
    QStringList dateformatlist;     dateformatlist 
 dd-MM-  MM-dd-  dd-MMM-MMM-dd-;   
     QComboBox *dateformat = new QComboBox;     // Graph Period
    QStringList periodlist;     periodlist  current
 day  current month  current weekcurrent year;
     QComboBox *graphperiod = new QComboBox;
  dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;  
 border-radius: 15px; });     QFormLayout *layout = new
 QFormLayout;     layout-addRow(currency code : , currency); 
       layout-addRow(display date format : , dateformat);
     layout-addRow(default reports period: , graphperiod);
  widget-setLayout(layout);     QHBoxLayout *mainlayout = new
 QHBoxLayout;     scroll-setWidget(widget);
  mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);
  dialog-setLayout(mainlayout);       dialog-show();       return
 app.exec();   } - Original Message - From:
 Robin Burchell Sent: 05/28/10 10:36 AM To: Daniil Ivanov
Subject: Re: QT4.6 with PR1.2 has introduced issues On
 Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov   daniil.iva...@gmail.com
 wrote:  Hi Ram!    Screenshots do not say   anything.   Without
 seeing the code it's not possible to say if it's   because of   problems
 with the way how you constructed layouts of the   widgets   or with Qt
 styles.  Seconding what Daniil says - to try   pinpoint your issue (and
 look for workarounds or fixes), please   produce a minimal testcase.
 That is, a *minimal* example (as little   code as possible, please! can't
 emphasise how important this is) which   demonstrates the incorrect
 behaviour you are talking about. :) Thanks, Daniil.  Best,  Robin
 Burchell mob: +447702671419 msn:   m...@viroteck.net irc: w00t @
 irc.freenode.net twr:   http://twitter.com/w00teh lac:
 http://identi.ca/w00t  




___
maemo-developers mailing list
maemo-developers@maemo.org
https

Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
In proper place, of course: QDialog *dialog = new QDialog; dialog-show(); int 
ret = app.exec(); delete dialog; return ret; But in fact it's much easier to 
allocate dialog statically. 

Hi Daniil, the example only contains a main function, there is no need for that 
delete, its quite redundant as the heap is cleared anyways after the return and 
app exits in the example ,is it not ?It would have been necessary had this been 
allocated in some custom class. cheerskrk969
- Original Message -
From: Daniil Ivanov
Sent: 06/01/10 11:34 AM
To: Ram Kurvakat
Subject: Re: QT4.6 with PR1.2 has introduced issues

On Tue, Jun 1, 2010 at 1:16 PM, Ram Kurvakat rkma...@gmx.com wrote:   - 
Original Message -   From: Daniil Ivanov   Sent: 06/01/10 10:44 AM   
To: Ram Kurvakat   Subject: Re: QT4.6 with PR1.2 has introduced issues   On 
Tue, Jun 1, 2010 at 12:00 PM, Ram Kurvakat rkma...@gmx.com wrote:--  
Sent from my Nokia N900   - Original message -  Hi Ram!   
Could you please post this questions to FN DiBo?  A  Hi Daniil, yes  of 
course i can.  I was asked for examples here so i replied.  FN DiBo =  forum 
nokia discussion board ? Yes.   FN DiBo post as requested ==  
http://discussion.forum.nokia.com/forum/showthread.php?p=742765   Also took 
the liberty to raise a bug :)   
http://bugreports.qt.nokia.com/browse/QTBUG-11135BTW, why do create 
dialog dynamically and never free it?   This is  an example only to show the 
issue. This is basically a bad habit.   Of course Im aware Daniil :-) thanks 
anyways ,   but now since y
 ou state that where do you expect to see the delete of the  dialog in this 
main function ;-) In proper place, of course: QDialog *dialog = new QDialog; 
dialog-show(); int ret = app.exec(); delete dialog; return ret; But in fact 
it's much easier to allocate dialog statically. Thanks, Daniil.   Thanks, 
Daniil.  Thanks, Daniil.   On Tue, Jun 1, 2010 at 10:59 AM,  Ram 
Kurvakat rkma...@gmx.com wrote:   Daniil, Robin or anyone  did 
you get a chance to look at this one please ? thanks for your  time, 
cheers krk969 - Original Message  -   
  From: Ram Kurvakat Sent: 05/29/10 10:32 AM To: 
Maemo-developers, virot...@viroteck.net, Daniil Ivanov  Subject: Re: 
QT4.6 with PR1.2 has introduced issues Here is the  example 
requested. Compile the example with qmake from  /opt/qt4-maemo5/bin 
which is QT4.6   in PR1.1 and run on the device with  QT4.6 libs 
 from PR1.1 installed in   /opt/qt4-maemo5/lib ~$:  ldd TEMP2  
    libQtGui.so.4 =  /opt/qt4-maemo5/lib/libQtGui.so.4 
(0x40142000) libQtCore.so.4 =  /opt/qt4-maemo5/lib/libQtCore.so.4 
(0x40bfd000)  and  this is the result 
http://bit.ly/bH2ApK Then  Compile the example with qmake 
from /usr/bin which is QT4.6 in PR1.2and run on the device with QT4.6 
libs from PR1.2 installed in /usr/lib ~$: ldd TEMP2  
libQtGui.so.4 =  /usr/lib/libQtGui.so.4 (0x40139000) 
libQtCore.so.4 =  /usr/lib/libQtCore.so.4 (0x40bf4000) 
 and you will  see this http://bit.ly/bIpRi0 I think some 
default  alignments may have been changed in the styles. Thanks 
again for  taking a look. #include QtGui #include 
QApplication int main(int argc, char* argv[])
  {  QApplication app(argc, argv); QDialog *dialog = new 
  QDialog; QScrollArea *scroll = new QScrollArea; 
  QWidget*  widget = new QWidget(scroll); // Currency code
QLineEdit *currency = new QLineEdit(dialog); // Date format 
  QStringList dateformatlist; dateformatlist   
  dd-MM-  MM-dd-  dd-MMM-MMM-dd-;
   QComboBox *dateformat = new QComboBox; // Graph Period
   QStringList periodlist; periodlist  current  day  
  current month  current weekcurrent year;  
  QComboBox *graphperiod = new QComboBox;  
  dialog-setStyleSheet(QDialog { border: 2px solid #8f8f91; ;
  border-radius: 15px; }); QFormLayout *layout = new  QFormLayout; 
  layout-addRow(currency code : , currency); 
  layout-addRow(display date format : , dateformat); 
  layout-addRow(default reports period: , graphperiod);  
widget-setLayout(layout); QHBoxLayout *mainlayout = new  
QHBoxLayout; scroll-setWidget(widget);  
mainlayout-addWidget(scroll, 0, Qt::AlignVCenter);  
dialog-setLayout(mainlayout);   dialog-show();   return  app.exec(); 
  } - Original Message - From:  Robin Burchell 
Sent: 05/28/10 10:36 AM To: Daniil Ivanov 
Subject: Re: QT4.6 with PR1.2 has introduced issues On  Fri, May 28, 
2010 at 7:25 AM, Daniil Ivanov   daniil.iva...@gmail.com  wrote:  Hi 
Ram!   Screenshots do not say   anything.  Without  seeing the code it's 
not possible to say if it's   because of  problems  with the way how you 
constructed layouts of the   widgets  or with Qt  styles. Seconding what 
Daniil says - to try   pinpoint your

Re: QT4.6 with PR1.2 has introduced issues

2010-05-28 Thread Daniil Ivanov
Hi Ram!

  Screenshots do not say anything.
  Without seeing the code it's not possible to say if it's because of
  problems with the way how you constructed layouts of the widgets
  or with Qt styles.

Thanks, Daniil.

On Thu, May 27, 2010 at 11:26 PM, Ram Kurvakat rkma...@gmx.com wrote:
 Hello,

 I have seen a few issues with the QT 4.6 version released with PR1.2.

 I've been using QT4.6 since PR1.1 and there seems to be these annoying
 changes since.

 I've provided some links to marked images to explain the issue so its easier
 to comprehend.

 Issue1 : http://bit.ly/cYPtRW

 Issue2 : http://bit.ly/cPjtAG

 Issue3 : http://bit.ly/a5E4sk

 Could somebody please throw some light on these issues since it appears in
 all development Ive done using QT4.6 from PR1.1.

 These changes were totally unexpected and not only that, it seems anything
 than an improvement, maybe even bugs.

 Please do not answer this by saying QT4.6 on PR1.1 was a beta deveopment
 version, in that case it seems then from the examples above the beta version
 was more proper.

 Thanks a lot for any help with this.

 cheers

 --

 krk969

 (Ram)



 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers


___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: QT4.6 with PR1.2 has introduced issues

2010-05-28 Thread Robin Burchell
On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov daniil.iva...@gmail.com wrote:
 Hi Ram!

  Screenshots do not say anything.
  Without seeing the code it's not possible to say if it's because of
  problems with the way how you constructed layouts of the widgets
  or with Qt styles.

Seconding what Daniil says - to try pinpoint your issue (and look for
workarounds or fixes), please produce a minimal testcase.

That is, a *minimal* example (as little code as possible, please!
can't emphasise how important this is) which demonstrates the
incorrect behaviour you are talking about. :)

 Thanks, Daniil.

Best,

Robin Burchell
mob: +447702671419
msn: m...@viroteck.net
irc: w00t @ irc.freenode.net
twr: http://twitter.com/w00teh
lac: http://identi.ca/w00t
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


QT4.6 with PR1.2 has introduced issues

2010-05-27 Thread Ram Kurvakat
Hello,

I have seen a few issues with the QT 4.6 version released with PR1.2.
I've been using QT4.6 since PR1.1 and there seems to be these annoying changes 
since.

I've provided some links to marked images to explain the issue so its easier to 
comprehend.

Issue1 : http://bit.ly/cYPtRW http://bit.ly/cYPtRW 

Issue2 : http://bit.ly/cPjtAG http://bit.ly/cPjtAG 

Issue3 : http://bit.ly/a5E4sk http://bit.ly/a5E4sk 

Could somebody please throw some light on these issues since it appears in all 
development Ive done using QT4.6 from PR1.1.
These changes were totally unexpected and not only that, it seems anything than 
an improvement, maybe even bugs.
Please do not answer this by saying QT4.6 on PR1.1 was a beta deveopment 
version, in that case it seems then from the examples above the beta version 
was more proper.

Thanks a lot for any help with this.

cheers
--
krk969
(Ram)
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers