Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - simonqu

Pages: [1]
1
Qt/Qtopia / QToolBar isn't dockable
« on: August 13, 2004, 11:51:31 am »
The "Minimized" Option make the tool bar folded at first place not unvible. If you take it off, the toolbar is unfolded as usual.

Dayong

2
Qt/Qtopia / QToolBar isn't dockable on Zaurus
« on: August 12, 2004, 07:16:06 pm »
I'm developing an application for sharp zaurus 5600 and encontered a QToolBar related problem. The program is working fine in my PC. When tranfered to PDA, the QToolBar isn't dockable. Any body here can help me?
Thanks
-------------------------------
Here enclosed the program
-------------------------------
#include <qapplication.h>
#include <qtoolbar.h>
#include <qwhatsthis.h>

class SmMainWin_QT:pulic QMainWindow
{
  public:
          SmMainWin_QT();
}
SmMainWin_QT::SmMainWin_QT():QMainWindow(0, "test")
{
  resize(235, 315);
  QToolBar * tool_bar = newQToolBar(this);
  addToolBar(tool_bar, Minimized);
  (void)QWhatsThis::WhatsThisButton(tool_bar);
}

int main(int argc, **argv)
{
  QApplication app(argc, argv);
  SmMainWin_QT* mainWin = new SmMainWin_QT();
  app.setMainWidget(mainWin);
  mainWin->show();
  return app.exec();
}

3
Qt/Qtopia / QToolBar isn't dockable
« on: August 12, 2004, 07:11:35 pm »
I'm developing an application for sharp zaurus 5600 and encontered a QToolBar related problem. The program is working fine in my PC. When tranfered to PDA, the QToolBar isn't dockable. Any body here can help me?

#include <qapplication.h>
#include <qtoolbar.h>
#include<qwhatsthis.h>

class SmMainWin_QT:pulic QMainWindow
{
  public:
          SmMainWin_QT();
}
SmMainWin_QT::SmMainWin_QT():QMainWindow(0, "test")
{
  resize(235, 315);
  QToolBar * tool_bar = newQToolBar(this);
  addToolBar(tool_bar, Minimized);
  (void)QWhatsThis::WhatsThisButton(tool_bar);
}

int main(int argc, **argv)
{

Pages: [1]