lyx_mirror/src/frontends/qt2/lengthcombo.h
Lars Gullik Bjønnes 99d1627a47 dont use pragma impementation and interface anymore
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-13 16:53:15 +00:00

44 lines
882 B
C++

// -*- C++ -*-
/**
* \file lengthcombo.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef LENGTHCOMBO_H
#define LENGTHCOMBO_H
#include <qcombobox.h>
#include "vspace.h"
/**
* A combo box for selecting LyXLength::UNIT types.
*/
class LengthCombo : public QComboBox {
Q_OBJECT
public:
LengthCombo(QWidget * parent, char * name);
/// set the current item
virtual void setCurrentItem(LyXLength::UNIT unit);
/// get the current item
LyXLength::UNIT currentLengthItem() const;
/// enable the widget
virtual void setEnabled(bool b);
protected slots:
virtual void has_activated(int index);
signals:
/// the current selection has changed
void selectionChanged(LyXLength::UNIT unit);
};
#endif // LENGTHCOMBO_H