1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/symbology/characterwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class CharacterWidget : QWidget
{
%Docstring(signature="appended")
A widget for displaying characters available in a preset font, and
allowing users to select an individual character.
%End
%TypeHeaderCode
#include "characterwidget.h"
%End
public:
CharacterWidget( QWidget *parent /TransferThis/ = 0 );
%Docstring
Constructor for CharacterWidget.
%End
virtual QSize sizeHint() const;
int columns() const;
%Docstring
Returns the number of columns of characters shown in the widget.
%End
int squareSize() const;
%Docstring
Returns the size (in pixels) of the square used to render each character
preview.
%End
QChar character() const;
%Docstring
Returns the currently selected character in the widget.
.. seealso:: :py:func:`setCharacter`
%End
QFont font() const;
%Docstring
Returns the font shown in the widget
.. seealso:: :py:func:`setFont`
%End
public slots:
void setFont( const QFont &font );
%Docstring
Sets the ``font`` to show in the widget.
.. seealso:: :py:func:`font`
%End
void setFontSize( double fontSize );
%Docstring
Sets the font size (in points) to render in the widget.
%End
void setFontStyle( const QString &fontStyle );
%Docstring
Sets the font style to show in the widget.
%End
void updateFontMerging( bool enable );
void setColumns( int columns );
%Docstring
Sets the number of columns of characters to show in the widget.
%End
void setCharacter( QChar character );
%Docstring
Sets the currently selected ``character`` in the widget.
.. seealso:: :py:func:`character`
.. seealso:: :py:func:`characterSelected`
%End
void clearCharacter();
%Docstring
Clears the currently selected character in the widget.
.. seealso:: :py:func:`character`
.. seealso:: :py:func:`setCharacter`
%End
signals:
void characterSelected( QChar character );
%Docstring
Emitted when a character is selected in the widget.
%End
protected:
virtual void keyPressEvent( QKeyEvent *event );
virtual void mouseMoveEvent( QMouseEvent *event );
virtual void mousePressEvent( QMouseEvent *event );
virtual void paintEvent( QPaintEvent *event );
virtual void resizeEvent( QResizeEvent *event );
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/symbology/characterwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|