~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Plugins/Qt/QTMGuiHelper.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100423070940-juy8n05xs1b6au8i
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  
29
29
public slots:
30
30
  void doUpdate ();
31
 
  void doSocketNotification (int socket);  
32
 
  void doCommands ();
33
 
};
34
 
 
35
 
 
36
 
class QTMCommandHelper : public QObject {
37
 
  Q_OBJECT
38
 
  object cmd;
39
 
  QTimer timer;
40
 
  
41
 
public:
42
 
  QTMCommandHelper (object _cmd, int _delay);
43
 
  
44
 
public slots:
45
 
  void doCommand ();
46
 
};
 
31
  void doReadSocketNotification (int socket);  
 
32
  void doWriteSocketNotification (int socket);  
 
33
};
 
34
 
47
35
 
48
36
#endif // QTMGUIHELPER_HPP