You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
3.2 KiB
162 lines
3.2 KiB
/*
|
|
* Mouspedometa
|
|
* Based on the original Xodometer VMS/Motif sources.
|
|
*
|
|
* Written by Armen Nakashian
|
|
* Compaq Computer Corporation
|
|
* Houston TX
|
|
* 22 May 1998
|
|
*
|
|
* If you make improvements or enhancements to Mouspedometa, please send
|
|
* them back to the author at any of the following addresses:
|
|
*
|
|
* armen@nakashian.com
|
|
*
|
|
* Thanks to Mark Granoff for writing the original Xodometer, and
|
|
* the whole KDE team for making such a nice environment to write
|
|
* programs in.
|
|
*
|
|
*
|
|
* This software is provided as is with no warranty of any kind,
|
|
* expressed or implied. Neither Digital Equipment Corporation nor
|
|
* Armen Nakashian will be held accountable for your use of this
|
|
* software.
|
|
*/
|
|
#ifndef KODOMETER_H
|
|
#define KODOMETER_H
|
|
|
|
#include <math.h>
|
|
|
|
#include <tqlabel.h>
|
|
#include <tqptrlist.h>
|
|
#include <tqkeycode.h>
|
|
#include <tqtooltip.h>
|
|
|
|
#include <tdeaboutdata.h>
|
|
#include <kuniqueapplication.h>
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdeconfig.h>
|
|
#include <kdebug.h>
|
|
#include <khelpmenu.h>
|
|
#include <kiconloader.h>
|
|
#include <tdelocale.h>
|
|
#include <tdemessagebox.h>
|
|
#include <tdepopupmenu.h>
|
|
#include <kstandarddirs.h>
|
|
#include <tdetoolbar.h>
|
|
#include <twin.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "kimagenumber.h"
|
|
|
|
#define MAXARGS 25
|
|
#define K_Left 1
|
|
#define K_Right 2
|
|
#define K_Top 3
|
|
#define K_Bottom 4
|
|
#define MAX_SCREEN 16
|
|
#define MAJOR_VERSION 3
|
|
#define MINOR_VERSION 0
|
|
|
|
const int inch = 0;
|
|
const int foot = 1;
|
|
const int mile = 2;
|
|
const int MAX_UNIT = 3;
|
|
typedef int Units;
|
|
|
|
|
|
typedef struct {
|
|
Window root;
|
|
Screen *scr;
|
|
int height, width;
|
|
double PixelsPerMM;
|
|
} _screenInfo;
|
|
|
|
|
|
typedef struct conversionEntry {
|
|
Units fromUnit;
|
|
const char *fromUnitTag;
|
|
const char *fromUnitTagPlural;
|
|
double maxFromBeforeNext;
|
|
double conversionFactor;
|
|
const char *toUnitTag;
|
|
const char *toUnitTagPlural;
|
|
double maxToBeforeNext;
|
|
int printPrecision;
|
|
} conversionEntry;
|
|
|
|
class Kodometer : public TQFrame
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
Kodometer(TQWidget* = 0, const char* = 0);
|
|
~Kodometer() {}
|
|
void refresh(void);
|
|
void readSettings(void);
|
|
void saveSettings(void);
|
|
|
|
void timerEvent(TQTimerEvent*);
|
|
void mousePressEvent(TQMouseEvent*);
|
|
bool eventFilter( TQObject *, TQEvent *e );
|
|
|
|
public slots:
|
|
void toggleEnabled();
|
|
void toggleUnits();
|
|
void toggleAutoReset();
|
|
void resetTrip();
|
|
void resetTotal();
|
|
void quit();
|
|
|
|
protected:
|
|
int dontRefresh;
|
|
|
|
double multiplier(Units);
|
|
int CalcDistance(void);
|
|
TQString FormatDistance(double &dist, Units);
|
|
void FindAllScreens();
|
|
|
|
KImageNumber* tripLabel;
|
|
KImageNumber* totalLabel;
|
|
KImageNumber* speedLabel;
|
|
|
|
TDEPopupMenu* menu;
|
|
KHelpMenu* help;
|
|
int metricID;
|
|
int autoResetID;
|
|
int enabledID;
|
|
|
|
double speed;
|
|
TQPtrList<double> speeds;
|
|
double lastDistance;
|
|
int distanceID;
|
|
int speedID;
|
|
|
|
Display *display;
|
|
Window root, RootIDRet, ChildIDRet;
|
|
int WinX, WinY;
|
|
unsigned int StateMask;
|
|
int XCoord, YCoord;
|
|
int lastXCoord, lastYCoord;
|
|
|
|
Units lastDUnit, lastTUnit;
|
|
|
|
int pointerScreen, lastPointerScreen;
|
|
int Enabled;
|
|
int UseMetric;
|
|
int AutoReset;
|
|
double Distance, TripDistance;
|
|
Units distanceUnit, tripDistanceUnit;
|
|
char startDate_s[128];
|
|
int cyclesSinceLastSave;
|
|
int pollInterval;
|
|
int saveFrequency;
|
|
|
|
_screenInfo screenInfo[MAX_SCREEN];
|
|
int screenCount;
|
|
};
|
|
|
|
#endif
|