Use same macro for hiding video record button and keybinding
Modified my previous patch to use the already-in-place VIDEOREC macro (used previously just for hiding the button on the main menu) instead of creating another one.
https://google-melange.appspot.com/gci/task/view/google/gci2012/7948213
#ifndef COLORWIDGET_H
#define COLORWIDGET_H
#include <QFrame>
#include <QModelIndex>
namespace Ui {
class ColorWidget;
}
class QStandardItemModel;
class ColorWidget : public QFrame
{
Q_OBJECT
public:
explicit ColorWidget(QStandardItemModel *colorsModel, QWidget *parent = 0);
~ColorWidget();
void setColors(QStandardItemModel * colorsModel);
void setColor(int color);
int getColor();
signals:
void colorChanged(int color);
private:
int m_color;
QStandardItemModel * m_colorsModel;
private slots:
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
protected:
void mousePressEvent(QMouseEvent * event);
void wheelEvent(QWheelEvent * event);
void nextColor();
void previousColor();
};
#endif // COLORWIDGET_H