You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
3.3 KiB
141 lines
3.3 KiB
12 years ago
|
/***************************************************************************
|
||
|
* Copyright (C) 2003-2004 by *
|
||
|
* Unai Garro (ugarro@users.sourceforge.net) *
|
||
|
* Jason Kivlighn (jkivlighn@gmail.com) *
|
||
|
* *
|
||
|
* This program is free software; you can redistribute it and/or modify *
|
||
|
* it under the terms of the GNU General Public License as published by *
|
||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _KRECIPES_H_
|
||
|
#define _KRECIPES_H_
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
12 years ago
|
#include <tdeapplication.h>
|
||
|
#include <tdemainwindow.h>
|
||
12 years ago
|
|
||
|
#include "krecipesview.h" //for KrePanel
|
||
|
|
||
|
class KrecipesView;
|
||
|
|
||
|
class KPrinter;
|
||
12 years ago
|
class TDEToggleAction;
|
||
12 years ago
|
class KURL;
|
||
|
class KDialog;
|
||
|
class ConversionDialog;
|
||
|
|
||
|
/**
|
||
|
* This class serves as the main window for Krecipes. It handles the
|
||
|
* menus, toolbars, and status bars.
|
||
|
*
|
||
|
* @short Main window class
|
||
|
* @author $AUTHOR <$EMAIL>
|
||
|
* @version $APP_VERSION
|
||
|
*/
|
||
12 years ago
|
class Krecipes : public TDEMainWindow
|
||
12 years ago
|
{
|
||
1 year ago
|
TQ_OBJECT
|
||
12 years ago
|
public:
|
||
|
/**
|
||
|
* Default Constructor
|
||
|
*/
|
||
|
Krecipes();
|
||
|
|
||
|
/**
|
||
|
* Default Destructor
|
||
|
*/
|
||
|
virtual ~Krecipes();
|
||
|
|
||
|
|
||
|
protected:
|
||
|
/**
|
||
12 years ago
|
* Overridden virtuals for TQt drag 'n drop (XDND)
|
||
12 years ago
|
*/
|
||
12 years ago
|
virtual void dragEnterEvent( TQDragEnterEvent *event );
|
||
12 years ago
|
|
||
|
protected:
|
||
|
/**
|
||
|
* This function is called when it is time for the app to save its
|
||
|
* properties for session management purposes.
|
||
|
*/
|
||
12 years ago
|
void saveProperties( TDEConfig * );
|
||
12 years ago
|
|
||
|
/**
|
||
12 years ago
|
* This function is called when this app is restored. The TDEConfig
|
||
12 years ago
|
* object points to the session management config file that was saved
|
||
|
* with @ref saveProperties
|
||
|
*/
|
||
12 years ago
|
void readProperties( TDEConfig * );
|
||
12 years ago
|
|
||
|
virtual bool queryClose();
|
||
|
|
||
|
|
||
|
private slots:
|
||
|
void fileNew();
|
||
|
void fileOpen();
|
||
|
void fileSave();
|
||
|
void fileExport();
|
||
|
void fileToClipboard();
|
||
|
void filePrint();
|
||
|
void optionsShowToolbar();
|
||
|
void optionsShowStatusbar();
|
||
|
void optionsConfigureKeys();
|
||
|
void optionsConfigureToolbars();
|
||
|
void optionsPreferences();
|
||
|
void newToolbarConfig();
|
||
|
void import();
|
||
|
void kreDBImport();
|
||
|
void pageSetupSlot();
|
||
|
void printSetupSlot();
|
||
|
void conversionToolSlot();
|
||
|
void backupSlot();
|
||
|
void restoreSlot();
|
||
|
void mergeSimilarCategories();
|
||
|
void mergeSimilarIngredients();
|
||
|
|
||
|
/** This function is called whenever a panel is shown or hidden and then sets
|
||
|
* actions as enabled as appropriate.
|
||
|
*/
|
||
|
void updateActions( KrePanel panel, bool show );
|
||
|
|
||
12 years ago
|
void changeStatusbar( const TQString& text );
|
||
|
void changeCaption( const TQString& text );
|
||
12 years ago
|
|
||
|
private:
|
||
|
// Private methods
|
||
|
void setupAccel();
|
||
|
void setupActions();
|
||
|
|
||
|
private:
|
||
|
KrecipesView *m_view;
|
||
|
|
||
|
KPrinter *m_printer;
|
||
12 years ago
|
TDEToggleAction *m_toolbarAction;
|
||
|
TDEToggleAction *m_statusbarAction;
|
||
12 years ago
|
|
||
|
private:
|
||
|
// Internal variables
|
||
12 years ago
|
TDEAction *saveAction;
|
||
|
TDEAction *exportAction;
|
||
|
TDEAction *editAction;
|
||
|
TDEAction *printAction;
|
||
|
TDEAction *reloadAction;
|
||
|
TDEAction *copyToClipboardAction;
|
||
12 years ago
|
|
||
|
KDialog *parsing_file_dlg;
|
||
|
ConversionDialog *convertDialog;
|
||
|
|
||
12 years ago
|
TQValueList<TDEAction*> recipe_actions;
|
||
12 years ago
|
|
||
|
private slots:
|
||
|
void enableSaveOption( bool en = true );
|
||
|
void recipeSelected( bool );
|
||
|
};
|
||
|
|
||
|
#endif // _KRECIPES_H_
|