By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1089
Collapse All | Expand All

(-)ori/kaffeine/kaffeine/src/kaffeine.h (-1 / +3 lines)
Lines 193-198 Link Here
193
	void slotDvbClient(bool,const TQString&,int,int,const TQString&);
193
	void slotDvbClient(bool,const TQString&,int,int,const TQString&);
194
	void slotNumKeyInput( int );
194
	void slotNumKeyInput( int );
195
	void slotDVBNextBack( int );
195
	void slotDVBNextBack( int );
196
  void slotLaunchWizard();
196
197
197
private:
198
private:
198
	void autoresize();
199
	void autoresize();
Lines 258-264 Link Here
258
	TDEToggleAction* m_autoResizeTriple;
259
	TDEToggleAction* m_autoResizeTriple;
259
	TDEToggleAction* m_originalAspect;
260
	TDEToggleAction* m_originalAspect;
260
	TDEToggleAction* m_toggleLayout;
261
	TDEToggleAction* m_toggleLayout;
261
	TDEActionMenu* m_playersMenu;
262
	TDEActionMenu*   m_playersMenu;
263
  TDEAction*       m_launchWizard;
262
	TDEToggleAction* m_sleepAfterPlay;
264
	TDEToggleAction* m_sleepAfterPlay;
263
	TDEToggleAction* m_quitAfterPlay;
265
	TDEToggleAction* m_quitAfterPlay;
264
	TDEToggleAction* m_quitAfterPlaylist;
266
	TDEToggleAction* m_quitAfterPlaylist;
(-)ori/kaffeine/kaffeine/src/kaffeine.cpp (-1 / +15 lines)
Lines 683-689 Link Here
683
	m_autoResizeTriple = new TDEToggleAction(i18n("Triple Size"), 0, ALT|Key_3, TQT_TQOBJECT(this), TQT_SLOT(slotAutoresizeTriple()), actionCollection(), "view_auto_resize_triple");
683
	m_autoResizeTriple = new TDEToggleAction(i18n("Triple Size"), 0, ALT|Key_3, TQT_TQOBJECT(this), TQT_SLOT(slotAutoresizeTriple()), actionCollection(), "view_auto_resize_triple");
684
684
685
	m_playersMenu = new TDEActionMenu(i18n("&Player Engine"), actionCollection(), "options_player");
685
	m_playersMenu = new TDEActionMenu(i18n("&Player Engine"), actionCollection(), "options_player");
686
	KStdAction::keyBindings(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureKeys()), actionCollection());
686
  m_launchWizard = new TDEAction(i18n("Launch &Wizard"), 0, Key_W, TQT_TQOBJECT(this), TQT_SLOT(slotLaunchWizard()), actionCollection(), "launch_wizard");
687
	
688
  KStdAction::keyBindings(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureKeys()), actionCollection());
687
	KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureToolbars()), actionCollection());
689
	KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureToolbars()), actionCollection());
688
	KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(slotPreferences()), actionCollection(), "options_preferences");
690
	KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(slotPreferences()), actionCollection(), "options_preferences");
689
691
Lines 1619-1624 Link Here
1619
	mute();
1621
	mute();
1620
}
1622
}
1621
1623
1624
void Kaffeine::slotLaunchWizard()
1625
{
1626
  TQString stamp = locateLocal("appdata", "wizard_stamp_v0.7.1");
1627
  InstWizard::showWizard();
1628
1629
  TDEProcess process;
1630
  process << "touch" << stamp;
1631
  process.start(TDEProcess::Block, TDEProcess::Stderr);
1632
  process.clearArguments();
1633
}
1634
1635
1622
/********* DCOP INTERFACE *********/
1636
/********* DCOP INTERFACE *********/
1623
1637
1624
void Kaffeine::openURL(TQString url)
1638
void Kaffeine::openURL(TQString url)
(-)ori/kaffeine/kaffeine/src/kaffeineui.rc (+1 lines)
Lines 34-39 Link Here
34
  <Merge/>
34
  <Merge/>
35
  <Menu noMerge="1" name="settings"><text>&amp;Settings</text>
35
  <Menu noMerge="1" name="settings"><text>&amp;Settings</text>
36
    <Action name="options_player"/>
36
    <Action name="options_player"/>
37
    <Action name="launch_wizard"/>
37
    <Separator/>
38
    <Separator/>
38
    <Merge name="StandardToolBarMenuHandler"/>
39
    <Merge name="StandardToolBarMenuHandler"/>
39
    <Action name="options_show_statusbar"/>
40
    <Action name="options_show_statusbar"/>

Return to bug 1089