mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
50 lines
1.0 KiB
C
50 lines
1.0 KiB
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>
|
||
|
|
||
|
#include "vspace.h"
|
||
|
|
||
|
/**
|
||
|
* A combo box for selecting LyXLength::UNIT types.
|
||
|
*/
|
||
|
class LengthCombo : public QComboBox {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
LengthCombo(QWidget * parent, char * name);
|
||
|
|
||
|
LengthCombo(QWidget * parent);
|
||
|
|
||
|
/// set the current item from unit
|
||
|
virtual void setCurrentItem(LyXLength::UNIT unit);
|
||
|
/// set the current item from int
|
||
|
virtual void setCurrentItem(int item);
|
||
|
/// get the current item
|
||
|
LyXLength::UNIT currentLengthItem() const;
|
||
|
/// enable the widget
|
||
|
virtual void setEnabled(bool b);
|
||
|
/// use the %-items?
|
||
|
virtual void noPercents();
|
||
|
|
||
|
protected slots:
|
||
|
virtual void has_activated(int index);
|
||
|
signals:
|
||
|
/// the current selection has changed
|
||
|
void selectionChanged(LyXLength::UNIT unit);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // LENGTHCOMBO_H
|