mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
eefc9ad640
update users of the dir accordingly. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13731 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
1018 B
C++
48 lines
1018 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 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
|