00001 #ifndef PREFERENCESIMPL_H 00002 #define PREFERENCESIMPL_H 00003 00004 #include "Preferences.h" 00005 #include "Scanner.h" 00006 00007 class PreferencesImpl : public Preferences 00008 { 00009 private: 00010 Scanner scanner; 00011 long oldId; 00012 00013 public: 00014 PreferencesImpl(); 00015 ~PreferencesImpl(); 00016 00017 virtual void show(); 00018 virtual void hide(); 00019 virtual void scan(); 00020 00021 protected: 00022 virtual void tray(const QPoint &, int); 00023 }; 00024 00025 #endif // PREFERENCESIMPL_H