summaryrefslogtreecommitdiffstats
path: root/kmouth/wordcompletion/klanguagebutton.h
blob: 1c116b57a638c14ecdaf670c6e809ec6fef9b225 (plain)
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
/*
 * klangbutton.h - Button with language selection drop down menu.
 *                 Derived from the KLangCombo class by Hans Petter Bieker.
 *
 * Copyright (c) 1999-2000 Hans Petter Bieker <bieker@kde.org>
 *           (c) 2001      Martijn Klingens   <mklingens@yahoo.com>
 *
 * Requires the TQt widget libraries, available at no cost at
 * http://www.troll.no/
 *
 *  This program 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 program 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 program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */


#ifndef __KLANGBUTTON_H__
#define __KLANGBUTTON_H__

#include "kpushbutton.h"

/*
 * Extended TQPushButton that shows a menu with submenu for language selection.
 * Essentially just a combo box with a 2-D dataset, but using a real
 * TQComboBox will produce ugly results.
 *
 * Combined version of KTagCombo and KLanguageCombo but using a TQPushButton
 * instead.
 */
class KLanguageButton : public TQPushButton
{
  Q_OBJECT
  TQ_OBJECT

public:
  KLanguageButton(TQWidget *tqparent=0, const char *name=0);
  ~KLanguageButton();

  void insertItem( const TQIconSet& icon, const TQString &text,
                   const TQString &tag, const TQString &submenu = TQString(),
                   int index = -1 );
  void insertItem( const TQString &text, const TQString &tag,
                   const TQString &submenu = TQString(), int index = -1 );
  void insertSeparator( const TQString &submenu = TQString(),
                        int index = -1 );
  void insertSubmenu( const TQString &text, const TQString &tag,
                      const TQString &submenu = TQString(), int index = -1);

  int count() const;
  void clear();
  
  void insertLanguage( const TQString& path, const TQString& name,
                       const TQString& sub = TQString(),
                       const TQString &submenu = TQString(), int index = -1);
  
  /*
   * Tag of the selected item
   */
  TQString currentTag() const;
  TQString tag( int i ) const;
  bool containsTag( const TQString &str ) const;

  /*
   * Set the current item
   */
  int currentItem() const;
  void setCurrentItem( int i );
  void setCurrentItem( const TQString &code );

signals:
  void activated( int index );
  void highlighted( int index );

private slots:
  void slotActivated( int );

private:
  // work space for the new class
  TQStringList *m_tags;  
  TQPopupMenu  *m_popup, *m_oldPopup;
  int         m_current;
};

#endif