This commit is contained in:
Sanel Zukan 2011-09-28 12:50:24 +00:00
parent c758335855
commit d987063dfe
1 changed files with 0 additions and 74 deletions

View File

@ -1,74 +0,0 @@
#ifndef exset_h
#define exset_h
#include <efltk/x.h>
#include <efltk/Fl_Util.h>
#include <stdio.h>
#include <stdlib.h>
#include <X11/X.h>
#include <X11/Xlib.h>
class Exset {
public:
Exset(void) {}
~Exset() {}
char str[80];
void set_pattern(int delay, int pattern = -1){
if( pattern != -1 ){
sprintf(str,"xset s %d %d",delay*60,pattern*60);
fl_start_child_process(str);
}else{
sprintf(str,"xset s %d",delay*60);
fl_start_child_process(str);
}
}
void set_check_blank(int blank){
sprintf(str,"xset s %s",blank ? "on" : "off");
fl_start_child_process(str);
}
void set_blank(int blank){
sprintf(str,"xset s %s",blank ? "blank" : "noblank");
fl_start_child_process(str);
}
void test_blank() { fl_start_child_process("xset s activate"); }
void test_bell() { fl_start_child_process("xkbbell"); }
void set_mouse(int accel, int thresh){
XChangePointerControl(fl_display, true, true, accel,
1, thresh);
}
void set_bell(int volume, int pitch, int duration, int sound = 0){
XKeyboardControl _ctrl;
unsigned long mask = KBBellPercent | KBBellPitch | KBBellDuration;
_ctrl.bell_percent = volume;
_ctrl.bell_pitch = pitch;
_ctrl.bell_duration = duration;
set_xset(&_ctrl,mask);
}
void set_keybd( int repeat, int clicks) {
XKeyboardControl _ctrl;
unsigned long mask = KBKeyClickPercent | KBAutoRepeatMode;
_ctrl.key_click_percent = clicks;
_ctrl.auto_repeat_mode = (repeat ? AutoRepeatModeOn : AutoRepeatModeOff);
set_xset(&_ctrl,mask);
}
void set_xset(XKeyboardControl * ctrl, unsigned long mask){
XChangeKeyboardControl(fl_display, mask, ctrl);
}
};
#endif