You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
4.4 KiB
131 lines
4.4 KiB
//
|
|
// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
|
|
// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
|
|
// may also apply
|
|
|
|
|
|
// Generated by preSip
|
|
// module tdeui version KDE 3.5.3
|
|
|
|
|
|
// This software is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License as
|
|
// published by the Free Software Foundation; either version 2 of
|
|
// the License, or (at your option) any later version.
|
|
//
|
|
// This software is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this library; see the file COPYING.
|
|
// If not, write to the Free Software Foundation, Inc.,
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
class KCharSelectTable : QGridView
|
|
{
|
|
%TypeHeaderCode
|
|
#include <kcharselect.h>
|
|
%End
|
|
|
|
|
|
public:
|
|
KCharSelectTable (QWidget* /TransferThis/, const char*, const QString&, const QChar&, int);
|
|
virtual QSize sizeHint () const;
|
|
virtual void resizeEvent (QResizeEvent*);
|
|
virtual void setFont (const QString&);
|
|
virtual void setChar (const QChar&);
|
|
virtual void setTableNum (int);
|
|
virtual QChar chr ();
|
|
|
|
protected:
|
|
virtual void paintCell (QPainter*, int, int);
|
|
virtual void mousePressEvent (QMouseEvent*);
|
|
virtual void mouseDoubleClickEvent (QMouseEvent*);
|
|
virtual void mouseReleaseEvent (QMouseEvent*);
|
|
virtual void mouseMoveEvent (QMouseEvent*);
|
|
virtual void keyPressEvent (QKeyEvent*);
|
|
void gotoLeft ();
|
|
void gotoRight ();
|
|
void gotoUp ();
|
|
void gotoDown ();
|
|
|
|
signals:
|
|
void highlighted (const QChar&);
|
|
void highlighted ();
|
|
void activated (const QChar&);
|
|
void activated ();
|
|
void focusItemChanged ();
|
|
void focusItemChanged (const QChar&);
|
|
void tableUp ();
|
|
void tableDown ();
|
|
void doubleClicked ();
|
|
|
|
protected:
|
|
//igx virtual void virtual_hook (int, void*);
|
|
|
|
}; // class KCharSelectTable
|
|
|
|
|
|
class KCharSelect : QVBox
|
|
{
|
|
%TypeHeaderCode
|
|
#include <kcharselect.h>
|
|
%End
|
|
|
|
|
|
public:
|
|
KCharSelect (QWidget* /TransferThis/, const char*, const QString& = QString ::null , const QChar& = ' ', int = 0);
|
|
virtual QSize sizeHint () const;
|
|
virtual void setFont (const QString&);
|
|
virtual void setChar (const QChar&);
|
|
virtual void setTableNum (int);
|
|
virtual QChar chr () const;
|
|
virtual QString font () const;
|
|
virtual int tableNum () const;
|
|
virtual void enableFontCombo (bool);
|
|
virtual void enableTableSpinBox (bool);
|
|
virtual bool isFontComboEnabled () const;
|
|
virtual bool isTableSpinBoxEnabled () const;
|
|
|
|
protected:
|
|
virtual void fillFontCombo ();
|
|
static void cleanupFontDatabase ();
|
|
|
|
protected slots:
|
|
void fontSelected (const QString&);
|
|
void tableChanged (int);
|
|
void charHighlighted (const QChar&);
|
|
void charHighlighted ();
|
|
void charActivated (const QChar&);
|
|
void charActivated ();
|
|
void charFocusItemChanged ();
|
|
void charFocusItemChanged (const QChar&);
|
|
void charTableUp ();
|
|
void charTableDown ();
|
|
void slotDoubleClicked ();
|
|
|
|
%If ( KDE_3_3_0 - )
|
|
void slotUnicodeEntered ();
|
|
void slotUpdateUnicode (const QChar&);
|
|
%End
|
|
|
|
|
|
signals:
|
|
void highlighted (const QChar&);
|
|
void highlighted ();
|
|
void activated (const QChar&);
|
|
void activated ();
|
|
void fontChanged (const QString&);
|
|
void focusItemChanged ();
|
|
void focusItemChanged (const QChar&);
|
|
void doubleClicked ();
|
|
|
|
protected:
|
|
//igx virtual void virtual_hook (int, void*);
|
|
|
|
}; // class KCharSelect
|
|
|