Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 97b766a67aab82d70a4bc4ad0ec4e1e8 > files > 58

genchemlab-debug-1.0-3mdk.i586.rpm

#ifndef CHEM_DIALOG_H
#define CHEM_DIALOG_H

#include <qdialog.h>
#include <qcombobox.h>
#include <qlineedit.h>
#include <qcheckbox.h>

#include "chemicals.h"

class TitrationDialog:public QDialog {
  Q_OBJECT
public:
  TitrationDialog(QWidget *parent = 0, QString name = 0);
  int selectedChemical();
  int getBuretChoice();
  int getIndicator();

  // I know, these should be private, but why complicate things?
  QComboBox *chemCompound, *chemUnits, *buretChoice, *inChoice;
  QLineEdit *mass1, *mass2;
  QCheckBox *addWater;
  int con1;
};

#endif