~ubuntu-branches/ubuntu/raring/mumble/raring

« back to all changes in this revision

Viewing changes to src/mumble/CustomElements.h

  • Committer: Bazaar Package Importer
  • Author(s): Thorvald Natvig
  • Date: 2010-01-09 19:28:50 UTC
  • mfrom: (9.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100109192850-zs4g5vwrrpd71kob
Tags: 1.2.1-2
Fix upgrade failure when upgrading mumble-server directly from 1.1.x
to 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Copyright (C) 2009, Stefan Hacker <dd0t@users.sourceforge.net>
2
 
   Copyright (C) 2005-2009, Thorvald Natvig <thorvald@natvig.com>
 
2
   Copyright (C) 2005-2010, Thorvald Natvig <thorvald@natvig.com>
3
3
 
4
4
   All rights reserved.
5
5
 
42
42
                bool bDefaultVisible;
43
43
                void focusInEvent(QFocusEvent *);
44
44
                void focusOutEvent(QFocusEvent *);
 
45
                void contextMenuEvent(QContextMenuEvent *);
45
46
                bool event(QEvent *);
 
47
        public:
 
48
                void setDefaultText(const QString &, bool = false);
 
49
                unsigned int completeAtCursor();
46
50
        signals:
47
51
                void tabPressed(void);
48
52
                void ctrlSpacePressed(void);
 
53
        public slots:
 
54
                void pasteAndSend_triggered();
49
55
        public:
50
56
                ChatbarLineEdit(QWidget *p = NULL);
51
 
                void setDefaultText(const QString &);
52
 
                unsigned int completeAtCursor();
53
57
};
54
58
 
55
59
class DockTitleBar : public QWidget {