~ubuntu-branches/ubuntu/lucid/mythtv/lucid

« back to all changes in this revision

Viewing changes to programs/mythfrontend/guidegrid.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Mario Limonciello, John Baab
  • Date: 2009-09-29 01:33:23 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20090929013323-6pvn8encm757zbxw
Tags: 0.22.0~trunk22101-0ubuntu1
[ Mario Limonciello ]
* New upstream checkout (r22101)
* Try to guard and make sure that ~mythtv is read from /etc/passwd 
  rather than assuming it's /home/mythtv.

[ John Baab ]
* debian/mythtv-common.postinst:
  - Added symlink for /home/mythtv/.mythtv/config.xml

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
    bool ProcessEntry(const QStringList &actions, const QKeyEvent *e);
57
57
 
58
 
    QString GetEntry(void) const { return entry; }
 
58
    QString GetEntry(void) const { return m_entry; }
59
59
 
60
60
  public slots:
61
61
    virtual void deleteLater(void);
65
65
    bool Update(void);
66
66
 
67
67
  private:
68
 
    JumpToChannelListener *listener;
69
 
    QString  entry;
70
 
    int      previous_start_channel_index;
71
 
    int      previous_current_channel_index;
72
 
    uint     rows_displayed;
73
 
    QTimer  *timer;
 
68
    JumpToChannelListener *m_listener;
 
69
    QString  m_entry;
 
70
    int      m_previous_start_channel_index;
 
71
    int      m_previous_current_channel_index;
 
72
    uint     m_rows_displayed;
 
73
    QTimer  *m_timer; // audited ref #5318
74
74
 
75
75
    static const uint kJumpToChannelTimeout = 3500; // ms
76
76
};
176
176
    ProgramList GetProgramList(uint chanid) const;
177
177
    uint GetAlternateChannelIndex(uint chan_idx, bool with_same_channum) const;
178
178
 
 
179
    virtual bool event(QEvent *e);
 
180
 
179
181
  private:
180
182
    bool  m_selectChangesChannel;
181
183
    int   m_selectRecThreshold;
211
213
    TV     *m_player;
212
214
    bool    m_usingNullVideo;
213
215
    bool    m_embedVideo;
214
 
    QTimer *previewVideoRefreshTimer;
 
216
    QTimer *m_previewVideoRefreshTimer; // audited ref #5318
215
217
    void    EmbedTVWindow(void);
216
218
    void    HideTVWindow(void);
217
219
    QRect   m_videoRect;
222
224
    QString m_unknownTitle;
223
225
    QString m_unknownCategory;
224
226
 
225
 
    QTimer *m_updateTimer;
 
227
    QTimer *m_updateTimer; // audited ref #5318
226
228
 
227
229
    int               m_changrpid;
228
230
    ChannelGroupList  m_changrplist;