/[svn]/qsampler/trunk/src/qsamplerMessages.h
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerMessages.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1470 by schoenebeck, Sun Nov 4 23:37:47 2007 UTC revision 1739 by capela, Wed May 14 17:37:45 2008 UTC
# Line 1  Line 1 
1  // qsamplerMessages.h  // qsamplerMessages.h
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2008, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     Copyright (C) 2007, Christian Schoenebeck
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
# Line 27  Line 27 
27    
28  class QSocketNotifier;  class QSocketNotifier;
29  class QTextEdit;  class QTextEdit;
30    class QFile;
31    
32    namespace QSampler {
33    
34  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
35  // qsamplerMessages - Messages log dockable window.  // QSampler::Messages - Messages log dockable window.
36  //  //
37    
38  class qsamplerMessages : public QDockWidget  class Messages : public QDockWidget
39  {  {
40          Q_OBJECT          Q_OBJECT
41    
42  public:  public:
43    
44          // Constructor.          // Constructor.
45          qsamplerMessages(QWidget *pParent);          Messages(QWidget *pParent);
46          // Destructor.          // Destructor.
47          ~qsamplerMessages();          ~Messages();
48    
49          // Stdout/stderr capture accessors.          // Stdout/stderr capture accessors.
50          bool isCaptureEnabled();          bool isCaptureEnabled();
# Line 56  public: Line 58  public:
58          int messagesLimit();          int messagesLimit();
59          void setMessagesLimit(int iMessagesLimit);          void setMessagesLimit(int iMessagesLimit);
60    
61            // Logging settings.
62            bool isLogging() const;
63            void setLogging(bool bEnabled, const QString& sFilename = QString());
64    
65          // The main utility methods.          // The main utility methods.
66          void appendMessages(const QString& s);          void appendMessages(const QString& s);
67          void appendMessagesColor(const QString& s, const QString &c);          void appendMessagesColor(const QString& s, const QString &c);
# Line 72  signals: Line 78  signals:
78    
79          void visibilityChanged(bool bVisible);          void visibilityChanged(bool bVisible);
80    
81  protected slots:  protected:
82    
83            // Message executives.
84            void appendMessagesLine(const QString& s);
85            void appendMessagesLog(const QString& s);
86    
87          // overridden method of QWidget          // overridden method of QWidget
88          void showEvent(QShowEvent* event);          void showEvent(QShowEvent *pEvent);
89    
90    protected slots:
91    
92          // Stdout capture slot.          // Stdout capture slot.
93          void stdoutNotify(int fd);          void stdoutNotify(int fd);
# Line 88  private: Line 100  private:
100          int m_iMessagesHigh;          int m_iMessagesHigh;
101    
102          // The textview main widget.          // The textview main widget.
103          QTextEdit *m_pTextView;          QTextEdit *m_pMessagesTextView;
104    
105          // Stdout capture variables.          // Stdout capture variables.
106          QSocketNotifier *m_pStdoutNotifier;          QSocketNotifier *m_pStdoutNotifier;
107          QString          m_sStdoutBuffer;          QString          m_sStdoutBuffer;
108          int              m_fdStdout[2];          int              m_fdStdout[2];
109    
110            // Logging stuff.
111            QFile *m_pMessagesLog;  
112  };  };
113    
114    } // namespace QSampler
115    
116  #endif  // __qsamplerMessages_h  #endif  // __qsamplerMessages_h
117    

Legend:
Removed from v.1470  
changed lines
  Added in v.1739

  ViewVC Help
Powered by ViewVC