Skip to content

Commit

Permalink
libmythui: Add mythuiactions.h to the list of installed files.
Browse files Browse the repository at this point in the history
and rename the file at the same time (for consistency)
  • Loading branch information
Mark Kendall committed Mar 14, 2011
1 parent a6e8879 commit c411f55
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv.h
Expand Up @@ -4,7 +4,7 @@
#include <QString>

#include "videoouttypes.h"
#include "mythui_actions.h"
#include "mythuiactions.h"
#include "tv_actions.h"

/** \brief ChannelChangeDirection is an enumeration of possible channel
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/libmythui.pro
Expand Up @@ -64,7 +64,7 @@ inc.files += mythuiprogressbar.h mythuiwebbrowser.h mythuiutils.h
inc.files += x11colors.h mythgenerictree.h mythuibuttontree.h
inc.files += mythvirtualkeyboard.h mythuishape.h mythuiguidegrid.h
inc.files += mythuieditbar.h mythuifilebrowser.h mythuivideo.h
inc.files += mythuiexp.h
inc.files += mythuiexp.h mythuiactions.h

INSTALLS += inc

Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythmainwindow.h
Expand Up @@ -3,7 +3,7 @@

#include <QWidget>

#include "mythui_actions.h"
#include "mythuiactions.h"
#include "mythuitype.h"
#include "mythscreenstack.h"

Expand Down
21 changes: 21 additions & 0 deletions mythtv/libs/libmythui/mythuiactions.h
@@ -0,0 +1,21 @@
#ifndef MYTHUI_ACTIONS_H
#define MYTHUI_ACTIONS_H

#define ACTION_0 "0"
#define ACTION_1 "1"
#define ACTION_2 "2"
#define ACTION_3 "3"
#define ACTION_4 "4"
#define ACTION_5 "5"
#define ACTION_6 "6"
#define ACTION_7 "7"
#define ACTION_8 "8"
#define ACTION_9 "9"

#define ACTION_SELECT "SELECT"
#define ACTION_UP "UP"
#define ACTION_DOWN "DOWN"
#define ACTION_LEFT "LEFT"
#define ACTION_RIGHT "RIGHT"

#endif // MYTHUI_ACTIONS_H

0 comments on commit c411f55

Please sign in to comment.