-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mixer.h
93 lines (83 loc) · 2.44 KB
/
Mixer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// Mixer.app
//
// Copyright (c) 1998-2002 Per Liden
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
//
#ifndef _MIXER_H_
#define _MIXER_H_
#include "PMixer/pulse.h"
#include <X11/Xlib.h>
#define APPNAME (char *) "PulseMixer.app"
#define VERSION (char *) "0.1"
#define INSTANCENAME (char *) "pulsemixer_app"
#define CLASSNAME (char *) "PulseMixer_app"
#define SETTINGS "/GNUstep/Defaults/PulseMixer"
#define MAX_COMMAND_LENGTH 512
#define LABEL_X 4
#define LABEL_Y 54
#define LABEL_FONT "-*-helvetica-medium-r-*-*-8-*-*-*-*-*-*-*"
#define LED_X 57
#define LED_Y 59
#define BUTTON_MIN 45
#define BUTTON_MAX 6
class Mixer
{
public:
Mixer(int argc, char** argv);
~Mixer() {};
void run();
void saveVolumeSettings();
void GetProfile();
int GetInputSinkDevice();
private:
void init_mixer( char* card );
void tryHelp(char* appname);
void showHelp();
void checkArgument(char** argv, int argc, int index);
void showErrorLed();
void findMixerDevice();
void getVolume();
void setVolume(int button, int volume);
void toggleMute(int button);
void setButtonType(int button);
void setButtonPosition(int button, int position);
void setButtonPositionRelative(int button, int relativePosition);
void loadVolumeSettings();
Display* mDisplay;
Window mRoot;
Window mAppWin;
Window mIconWin;
Window mButton[3];
char* mMixerDevice;
char* mInstanceName;
char* mLabelText;
char* mSettingsFile;
char* mCommand;
char* card;
int mError;
int mVolumeSource[3];
int mVolume[3];
int mVolumePos[3];
int mVolumeMute[3];
int mWheelButton;
bool mSaveSettings;
bool mLoadSettings;
PulseClient* ponymix;
// AMixer* aMixer;
};
#endif