mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
NO-OP: indent
This commit is contained in:
parent
4b86d19b27
commit
eeb2cddd26
1 changed files with 19 additions and 19 deletions
|
|
@ -60,9 +60,9 @@ private:
|
||||||
const static int STATUS_ONLINE = 0x01;
|
const static int STATUS_ONLINE = 0x01;
|
||||||
const static int STATUS_OK = 0x00;
|
const static int STATUS_OK = 0x00;
|
||||||
|
|
||||||
const static int LIGHTS = 7;
|
const static int LIGHTS = 7;
|
||||||
const static int ROWS = 2;
|
const static int ROWS = 2;
|
||||||
const static int COLUMNS = 20;
|
const static int COLUMNS = 20;
|
||||||
const static uint8_t WheelDirectionThreshold = 0x7f;
|
const static uint8_t WheelDirectionThreshold = 0x7f;
|
||||||
|
|
||||||
enum LightID {
|
enum LightID {
|
||||||
|
|
@ -136,12 +136,12 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
enum BlingMode {
|
enum BlingMode {
|
||||||
BlingOff,
|
BlingOff,
|
||||||
BlingKit,
|
BlingKit,
|
||||||
BlingRotating,
|
BlingRotating,
|
||||||
BlingPairs,
|
BlingPairs,
|
||||||
BlingRows,
|
BlingRows,
|
||||||
BlingFlashAll,
|
BlingFlashAll,
|
||||||
BlingEnter,
|
BlingEnter,
|
||||||
BlingExit
|
BlingExit
|
||||||
};
|
};
|
||||||
|
|
@ -170,17 +170,17 @@ private:
|
||||||
|
|
||||||
ARDOUR::gain_t gain_fraction;
|
ARDOUR::gain_t gain_fraction;
|
||||||
|
|
||||||
Glib::Threads::Mutex update_lock;
|
Glib::Threads::Mutex update_lock;
|
||||||
|
|
||||||
std::bitset<ROWS*COLUMNS> screen_invalid;
|
std::bitset<ROWS*COLUMNS> screen_invalid;
|
||||||
char screen_current[ROWS][COLUMNS];
|
char screen_current[ROWS][COLUMNS];
|
||||||
char screen_pending[ROWS][COLUMNS];
|
char screen_pending[ROWS][COLUMNS];
|
||||||
char screen_flash[ROWS][COLUMNS];
|
char screen_flash[ROWS][COLUMNS];
|
||||||
|
|
||||||
std::bitset<LIGHTS> lights_invalid;
|
std::bitset<LIGHTS> lights_invalid;
|
||||||
std::bitset<LIGHTS> lights_current;
|
std::bitset<LIGHTS> lights_current;
|
||||||
std::bitset<LIGHTS> lights_pending;
|
std::bitset<LIGHTS> lights_pending;
|
||||||
std::bitset<LIGHTS> lights_flash;
|
std::bitset<LIGHTS> lights_flash;
|
||||||
|
|
||||||
int32_t last_notify;
|
int32_t last_notify;
|
||||||
char last_notify_msg[COLUMNS+1];
|
char last_notify_msg[COLUMNS+1];
|
||||||
|
|
@ -193,7 +193,7 @@ private:
|
||||||
uint32_t last_mins;
|
uint32_t last_mins;
|
||||||
uint32_t last_secs;
|
uint32_t last_secs;
|
||||||
uint32_t last_samples;
|
uint32_t last_samples;
|
||||||
samplepos_t last_where;
|
samplepos_t last_where;
|
||||||
ARDOUR::gain_t last_track_gain;
|
ARDOUR::gain_t last_track_gain;
|
||||||
uint32_t last_meter_fill;
|
uint32_t last_meter_fill;
|
||||||
struct timeval last_wheel_motion;
|
struct timeval last_wheel_motion;
|
||||||
|
|
@ -210,7 +210,7 @@ private:
|
||||||
int load_config(char *name = "default");
|
int load_config(char *name = "default");
|
||||||
int save(char *name);
|
int save(char *name);
|
||||||
int load(char *name);
|
int load(char *name);
|
||||||
void print (int row, int col, const char* text);
|
void print (int row, int col, const char* text);
|
||||||
void print_noretry (int row, int col, const char* text);
|
void print_noretry (int row, int col, const char* text);
|
||||||
void notify(const char *msg);
|
void notify(const char *msg);
|
||||||
|
|
||||||
|
|
@ -247,10 +247,10 @@ private:
|
||||||
// Commands to write to the lcd
|
// Commands to write to the lcd
|
||||||
|
|
||||||
int lcd_init();
|
int lcd_init();
|
||||||
bool lcd_damage();
|
bool lcd_damage();
|
||||||
bool lcd_isdamaged();
|
bool lcd_isdamaged();
|
||||||
|
|
||||||
bool lcd_damage(int row, int col = 0, int length = COLUMNS);
|
bool lcd_damage(int row, int col = 0, int length = COLUMNS);
|
||||||
bool lcd_isdamaged(int row, int col = 0, int length = COLUMNS);
|
bool lcd_isdamaged(int row, int col = 0, int length = COLUMNS);
|
||||||
|
|
||||||
int lcd_flush();
|
int lcd_flush();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue