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.
krecipes/krecipes/src/dialogs/ingredientsdialog.h

94 lines
2.8 KiB

/***************************************************************************
* Copyright (C) 2003 by *
* Unai Garro (ugarro@users.sourceforge.net) *
* Cyril Bosselut (bosselut@b1project.com) *
* 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 INGREDIENTSDIALOG_H
#define INGREDIENTSDIALOG_H
#include <ntqpushbutton.h>
#include <ntqvbox.h>
#include <ntqlayout.h>
#include <ntqwidget.h>
#include <knuminput.h>
#include "widgets/krelistview.h"
#include "widgets/dblistviewbase.h"
#include "datablocks/unit.h"
class KDoubleNumInput;
class RecipeDB;
class ElementList;
class SelectUnitDialog;
class CreateElementDialog;
class IngredientPropertyList;
class SelectPropertyDialog;
class UnitsDialog;
class IngredientGroupsDialog;
class MixedNumber;
class IngredientsDialog: public TQWidget
{
TQ_OBJECT
public:
IngredientsDialog( TQWidget* parent, RecipeDB *db );
~IngredientsDialog();
void reload( ReloadFlags flag = Load );
private:
// Widgets
TQGridLayout* layout;
TQPushButton* addIngredientButton;
TQPushButton* removeIngredientButton;
TQPushButton* addUnitButton;
TQPushButton* removeUnitButton;
TQPushButton* addPropertyButton;
TQPushButton* removePropertyButton;
TQPushButton* addWeightButton;
TQPushButton* removeWeightButton;
KreListView* ingredientListView;
KreListView* unitsListView;
KreListView* propertiesListView;
KreListView* weightsListView;
TQPushButton* pushButton5;
KDoubleNumInput* inputBox;
IngredientGroupsDialog *groupsDialog;
// Internal Methods
void reloadIngredientList( ReloadFlags flag = Load );
void reloadUnitList( void );
void reloadPropertyList( void );
void reloadWeightList( void );
int findPropertyNo( TQListViewItem *it );
// Internal Variables
RecipeDB *database;
UnitList *unitList;
IngredientPropertyList *propertiesList;
ElementList *perUnitListBack;
private slots:
void addUnitToIngredient( void );
void removeUnitFromIngredient( void );
void addWeight();
void removeWeight();
void updateLists( void );
void addPropertyToIngredient( void );
void removePropertyFromIngredient( void );
void insertPropertyEditBox( TQListViewItem* it );
void setPropertyAmount( double amount );
void openUSDADialog( void );
void itemRenamed( TQListViewItem*, const TQPoint &, int col );
};
#endif