You are not logged in.

Search results

Search results 1-4 of 4.

Monday, May 30th 2005, 4:00pm

Author: Danny

FindWindow and SetWindowLong

Hi to all, i have a very simple application in windows, i wont to port to kde. The application search a Game with FindWindow function and minimize it with SetWindowLong, anyone can tell me, how to read all opens windows and minimize the focused window in linux/kde ?. Thanks for all, and excuse my broken english

Thursday, April 29th 2004, 4:06am

Author: Danny

Adding buttons to toolbar

Yes it's help me, thanks for the info

Wednesday, April 28th 2004, 9:03am

Author: Danny

RE: Adding buttons to toolbar

Thanks but i dont understand this. The code only work ok if y write my code before the createGUI call, if i write my code after not work. Is this normal ?? Work ok: createGUI("/danny/programacion/kviewimage/src/kviewimageui.rc"); KAction *newAct = new KAction(i18n("&New"), "filenew", KStdAccel::shortcut(KStdAccel::New), this, SLOT(fileNew()), actionCollection(), "new"); QPopupMenu *file = new QPopupMenu; newAct->plug(file); newAct->plug(toolBar()); not work: KAction *newAct = new KAction(i18n("&...

Wednesday, April 28th 2004, 8:30am

Author: Danny

Adding buttons to toolbar

Hi to all, i need a litle help. I develope my first application with kdevelop wizard (Application Framework). Only need know how to add buttons in setupActions function for custom menu entries. This is my setupActions() KStdAction::undo(this, SLOT(undo()), actionCollection()); KStdAction::redo(this, SLOT(redo()), actionCollection()); //my menu QIconSet m_Icon = QIconSet(BarIcon("data_visualization_section"), QIconSet:mall); (void)new KAction(i18n("New &User"), 0, this, SLOT(newUser()),actionColl...