Last change
on this file was 2752, checked in by bird, 19 years ago |
Two classes (CPMScreen and CPMKeyState) + the hook dll left (and debugging of course).
|
File size:
1.2 KB
|
Rev | Line | |
---|
[2749] | 1 | /*
|
---|
| 2 | * synergy -- mouse and keyboard sharing utility
|
---|
| 3 | * Copyright (C) 2004 Chris Schoeneman
|
---|
[2752] | 4 | * Copyright (C) 2006 Knut St. Osmundsen
|
---|
[2749] | 5 | *
|
---|
| 6 | * This package is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the GNU General Public License
|
---|
| 8 | * found in the file COPYING that should have accompanied this file.
|
---|
| 9 | *
|
---|
| 10 | * This package is distributed in the hope that it will be useful,
|
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 13 | * GNU General Public License for more details.
|
---|
| 14 | */
|
---|
| 15 |
|
---|
[2752] | 16 | #include "CPMClientTaskBarReceiver.h"
|
---|
[2749] | 17 | #include "CArch.h"
|
---|
| 18 |
|
---|
| 19 | //
|
---|
[2752] | 20 | // CPMClientTaskBarReceiver
|
---|
[2749] | 21 | //
|
---|
| 22 |
|
---|
[2752] | 23 | CPMClientTaskBarReceiver::CPMClientTaskBarReceiver(
|
---|
[2749] | 24 | const CBufferedLogOutputter*)
|
---|
| 25 | {
|
---|
| 26 | // add ourself to the task bar
|
---|
| 27 | ARCH->addReceiver(this);
|
---|
| 28 | }
|
---|
| 29 |
|
---|
[2752] | 30 | CPMClientTaskBarReceiver::~CPMClientTaskBarReceiver()
|
---|
[2749] | 31 | {
|
---|
| 32 | ARCH->removeReceiver(this);
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | void
|
---|
[2752] | 36 | CPMClientTaskBarReceiver::showStatus()
|
---|
[2749] | 37 | {
|
---|
| 38 | // do nothing
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | void
|
---|
[2752] | 42 | CPMClientTaskBarReceiver::runMenu(int, int)
|
---|
[2749] | 43 | {
|
---|
| 44 | // do nothing
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | void
|
---|
[2752] | 48 | CPMClientTaskBarReceiver::primaryAction()
|
---|
[2749] | 49 | {
|
---|
| 50 | // do nothing
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | const IArchTaskBarReceiver::Icon
|
---|
[2752] | 54 | CPMClientTaskBarReceiver::getIcon() const
|
---|
[2749] | 55 | {
|
---|
| 56 | return NULL;
|
---|
| 57 | }
|
---|
[2752] | 58 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.