KRuler Class

A ruler widget. More...

Header: #include <KRuler>
CMake: find_package(KF6 REQUIRED COMPONENTS WidgetsAddons)
target_link_libraries(mytarget PRIVATE KF6::WidgetsAddons)
Inherits: QAbstractSlider

Public Types

enum MetricStyle { Custom, Pixel, Inch, Millimetres, Centimetres, Metres }

Properties

Public Functions

KRuler(QWidget *parent = nullptr)
KRuler(Qt::Orientation orient, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags())
KRuler(Qt::Orientation orient, int widgetWidth, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags())
int bigMarkDistance() const
QString endLabel() const
int endOffset() const
int length() const
bool lengthFixed() const
int littleMarkDistance() const
int mediumMarkDistance() const
int offset() const
double pixelPerMark() const
void setBigMarkDistance(int)
void setEndLabel(const QString &)
void setLength(int)
void setLengthFixed(bool fix)
void setLittleMarkDistance(int)
void setMediumMarkDistance(int)
void setOffset(int offset)
void setPixelPerMark(double rate)
void setRulerMetricStyle(KRuler::MetricStyle)
void setShowBigMarks(bool)
void setShowEndLabel(bool)
void setShowEndMarks(bool)
void setShowLittleMarks(bool)
void setShowMediumMarks(bool)
void setShowPointer(bool)
void setShowTinyMarks(bool)
void setTinyMarkDistance(int)
bool showBigMarks() const
bool showEndLabel() const
bool showEndMarks() const
bool showLittleMarks() const
bool showMediumMarks() const
bool showPointer() const
bool showTinyMarks() const
void slideDown(int count = 1)
void slideUp(int count = 1)
int tinyMarkDistance() const

Public Slots

void slotEndOffset(int)
void slotNewOffset(int)
void slotNewValue(int)

Detailed Description

The vertical ruler looks similar to this:

meters                       inches

------   <--- end mark  ---> ------
    --                            -
    --   <---little mark--->     --
    --                            -
    --                          ---
   ---   <---medium mark          -
    --                           --
    --        tiny mark---->      -
    --                         ----
    --                            -
  ----   <-----big mark          --
    --                            -
  |>--   <--ruler pointer-->   |>--

There are tiny marks, little marks, medium marks, and big marks along the ruler.

To receive mouse clicks or mouse moves, the class has to be overloaded.

KRuler Widget

Member Type Documentation

enum KRuler::MetricStyle

The types of units used.

ConstantValue
KRuler::Custom0
KRuler::Pixel1
KRuler::Inch2
KRuler::Millimetres3
KRuler::Centimetres4
KRuler::Metres5

Property Documentation

bigMarkDistance : int

Access functions:

int bigMarkDistance() const
void setBigMarkDistance(int)

endLabel : QString

Access functions:

QString endLabel() const
void setEndLabel(const QString &)

[read-only] endOffset : const int

Access functions:

int endOffset() const

length : int

Access functions:

int length() const
void setLength(int)

lengthFixed : bool

Access functions:

bool lengthFixed() const
void setLengthFixed(bool fix)

littleMarkDistance : int

Access functions:

mediumMarkDistance : int

Access functions:

int mediumMarkDistance() const
void setBigMarkDistance(int)

[read-only] offset : const int

Access functions:

int offset() const

pixelPerMark : double

Access functions:

double pixelPerMark() const
void setPixelPerMark(double rate)

showBigMarks : bool

Access functions:

bool showBigMarks() const
void setShowBigMarks(bool)

showEndLabel : bool

Access functions:

bool showEndLabel() const
void setShowEndLabel(bool)

showLittleMarks : bool

Access functions:

bool showLittleMarks() const
void setShowLittleMarks(bool)

showMediumMarks : bool

Access functions:

bool showMediumMarks() const
void setShowMediumMarks(bool)

showPointer : bool

Access functions:

bool showPointer() const
void setShowPointer(bool)

showTinyMarks : bool

Access functions:

bool showTinyMarks() const
void setShowTinyMarks(bool)

tinyMarkDistance : int

Access functions:

int tinyMarkDistance() const
void setTinyMarkDistance(int)

Member Function Documentation

[explicit] KRuler::KRuler(QWidget *parent = nullptr)

Constructs a horizontal ruler.

[explicit] KRuler::KRuler(Qt::Orientation orient, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags())

Constructs a ruler with orientation orient.

parent and f are passed to QFrame. The default look is a raised widget but may be changed with the inherited QFrame methods.

orient Orientation of the ruler.

parent Will be handed over to QFrame.

f Will be handed over to QFrame.

KRuler::KRuler(Qt::Orientation orient, int widgetWidth, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags())

Constructs a ruler with orientation orient and initial width widgetWidth.

The width sets the fixed width of the widget. This is useful if you want to draw the ruler bigger or smaller than the default size.

Note: The size of the marks doesn't change.

parent and f are passed to QFrame.

orient Orientation of the ruler.

widgetWidth Fixed width of the widget.

parent Will be handed over to QFrame.

f Will be handed over to QFrame.

int KRuler::bigMarkDistance() const

Returns the distance between big marks.

Note: Getter function for property bigMarkDistance.

See also setBigMarkDistance().

QString KRuler::endLabel() const

Note: Getter function for property endLabel.

See also setEndLabel().

int KRuler::endOffset() const

Note: Getter function for property endOffset.

int KRuler::length() const

Note: Getter function for property length.

See also setLength().

bool KRuler::lengthFixed() const

Note: Getter function for property lengthFixed.

See also setLengthFixed().

int KRuler::littleMarkDistance() const

Returns the distance between little marks.

Note: Getter function for property littleMarkDistance.

See also setLittleMarkDistance().

int KRuler::mediumMarkDistance() const

Note: Getter function for property mediumMarkDistance.

See also setMediumMarkDistance().

int KRuler::offset() const

Returns the current ruler offset.

Note: Getter function for property offset.

See also setOffset().

double KRuler::pixelPerMark() const

Returns the number of pixels between two base marks.

Note: Getter function for property pixelPerMark.

See also setPixelPerMark().

void KRuler::setBigMarkDistance(int)

Sets distance between big marks.

For English (inches) or metric styles it is twice the medium mark distance.

Note: Setter function for property bigMarkDistance. Setter function for property mediumMarkDistance.

See also bigMarkDistance().

void KRuler::setEndLabel(const QString &)

Sets the label this is drawn at the beginning of the visible part of the ruler to label

Note: Setter function for property endLabel.

See also endLabel().

void KRuler::setLength(int)

Sets the length of the ruler, i.e. the difference between the begin mark and the end mark of the ruler.

Same as (width() - offset())

when the length is not locked, it gets adjusted with the length of the widget.

Note: Setter function for property length.

See also length().

void KRuler::setLengthFixed(bool fix)

Locks the length of the ruler, i.e. the difference between the two end marks doesn't change when the widget is resized.

fix fixes the length, if true

Note: Setter function for property lengthFixed.

See also lengthFixed().

void KRuler::setLittleMarkDistance(int)

Sets the distance between little marks.

The default value is 1 in the metric system and 2 in the English (inches) system.

Note: Setter function for property littleMarkDistance.

See also littleMarkDistance().

void KRuler::setMediumMarkDistance(int)

Sets the distance between medium marks.

For English (inches) styles it defaults to twice the little mark distance. For metric styles it defaults to five times the little mark distance.

See also mediumMarkDistance().

void KRuler::setOffset(int offset)

Sets the ruler slide offset.

This is like slideup() or slidedown() with an absolute offset from the start of the ruler.

offset Number of pixel to move the ruler up or left from the beginning

See also offset().

void KRuler::setPixelPerMark(double rate)

Sets the number of pixels between two base marks.

Calling this method stretches or shrinks your ruler.

For pixel display ( MetricStyle) the value is 10.0 marks per pixel ;-)

For English (inches) it is 9.0, and for centimetres ~2.835 -> 3.0 . If you want to magnify your part of display, you have to adjust the mark distance here.

Notice: The double type is only supported to give the possibility of having some double values. It should be used with care. Using values below 10.0 shows visible jumps of markpositions (e.g. 2.345). Using whole numbers is highly recommended.

To use int values use setPixelPerMark((int)your_int_value);

default: 1 mark per 10 pixels

Note: Setter function for property pixelPerMark.

See also pixelPerMark().

void KRuler::setRulerMetricStyle(KRuler::MetricStyle)

Sets up the necessary tasks for the provided styles.

A convenience method.

void KRuler::setShowBigMarks(bool)

Shows/hides big marks.

Note: Setter function for property showBigMarks.

See also showBigMarks().

void KRuler::setShowEndLabel(bool)

Show/hide number values of the end marks.

Default is false.

Note: Setter function for property showEndLabel.

See also showEndLabel().

void KRuler::setShowEndMarks(bool)

Shows/hides end marks.

See also showEndMarks().

void KRuler::setShowLittleMarks(bool)

Shows/hides little marks.

Note: Setter function for property showLittleMarks.

See also showLittleMarks().

void KRuler::setShowMediumMarks(bool)

Shows/hides medium marks.

Note: Setter function for property showMediumMarks.

See also showMediumMarks().

void KRuler::setShowPointer(bool)

Shows/hides the pointer.

Note: Setter function for property showPointer.

See also showPointer().

void KRuler::setShowTinyMarks(bool)

Shows/hides tiny marks.

Note: Setter function for property showTinyMarks.

See also showTinyMarks().

void KRuler::setTinyMarkDistance(int)

Sets the distance between tiny marks.

This is mostly used in the English system (inches) with distance of 1.

Note: Setter function for property tinyMarkDistance.

See also tinyMarkDistance().

bool KRuler::showBigMarks() const

Note: Getter function for property showBigMarks.

See also setShowBigMarks().

bool KRuler::showEndLabel() const

Note: Getter function for property showEndLabel.

See also setShowEndLabel().

bool KRuler::showEndMarks() const

See also setShowEndMarks().

bool KRuler::showLittleMarks() const

Note: Getter function for property showLittleMarks.

See also setShowLittleMarks().

bool KRuler::showMediumMarks() const

Note: Getter function for property showMediumMarks.

See also setShowMediumMarks().

bool KRuler::showPointer() const

Note: Getter function for property showPointer.

See also setShowPointer().

bool KRuler::showTinyMarks() const

Note: Getter function for property showTinyMarks.

See also setShowTinyMarks().

void KRuler::slideDown(int count = 1)

Sets the number of pixels by which the ruler may slide down or right. The number of pixels moved is realive to the previous position. The Method makes sense for updating a ruler, which is working with a scrollbar.

This doesn't affect the position of the ruler pointer. Only the visible part of the ruler is moved.

count Number of pixel moving up or left relative to the previous position

void KRuler::slideUp(int count = 1)

Sets the number of pixels by which the ruler may slide up or left. The number of pixels moved is realive to the previous position. The Method makes sense for updating a ruler, which is working with a scrollbar.

This doesn't affect the position of the ruler pointer. Only the visible part of the ruler is moved.

count Number of pixel moving up or left relative to the previous position

[slot] void KRuler::slotEndOffset(int)

[slot] void KRuler::slotNewOffset(int)

Sets the ruler marks to a new position.

The pointer is NOT updated. QWidget::repaint() is called afterwards.

[slot] void KRuler::slotNewValue(int)

Sets the pointer to a new position.

The offset is NOT updated. QWidget::repaint() is called afterwards.

int KRuler::tinyMarkDistance() const

Returns the distance between tiny marks.

Note: Getter function for property tinyMarkDistance.

See also setTinyMarkDistance().