1 /*****************************************************************************/ 2 // OpenBeOS InputServer 3 // 4 // Version: [0.0.5] [Development Stage] 5 // 6 // [Description] 7 // 8 // 9 // This application and all source files used in its construction, except 10 // where noted, are licensed under the MIT License, and have been written 11 // and are: 12 // 13 // Copyright (c) 2002 OpenBeOS Project 14 // 15 // Permission is hereby granted, free of charge, to any person obtaining a 16 // copy of this software and associated documentation files (the "Software"), 17 // to deal in the Software without restriction, including without limitation 18 // the rights to use, copy, modify, merge, publish, distribute, sublicense, 19 // and/or sell copies of the Software, and to permit persons to whom the 20 // Software is furnished to do so, subject to the following conditions: 21 // 22 // The above copyright notice and this permission notice shall be included 23 // in all copies or substantial portions of the Software. 24 // 25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 26 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 28 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 29 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 30 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 31 // DEALINGS IN THE SOFTWARE. 32 /*****************************************************************************/ 33 34 35 #include "InputServerMethod.h" 36 #include "Messenger.h" 37 38 /** 39 * Method: BInputServerMethod::BInputServerMethod() 40 * Descr: 41 */ 42 BInputServerMethod::BInputServerMethod(const char *name, 43 const uchar *icon) 44 { 45 } 46 47 48 /** 49 * Method: BInputServerMethod::~BInputServerMethod() 50 * Descr: 51 */ 52 BInputServerMethod::~BInputServerMethod() 53 { 54 } 55 56 57 /** 58 * Method: BInputServerMethod::MethodActivated() 59 * Descr: 60 */ 61 status_t 62 BInputServerMethod::MethodActivated(bool active) 63 { 64 status_t dummy; 65 66 return dummy; 67 } 68 69 70 /** 71 * Method: BInputServerMethod::EnqueueMessage() 72 * Descr: 73 */ 74 status_t 75 BInputServerMethod::EnqueueMessage(BMessage *message) 76 { 77 status_t dummy; 78 79 return dummy; 80 } 81 82 83 /** 84 * Method: BInputServerMethod::SetName() 85 * Descr: 86 */ 87 status_t 88 BInputServerMethod::SetName(const char *name) 89 { 90 status_t dummy; 91 92 return dummy; 93 } 94 95 96 /** 97 * Method: BInputServerMethod::SetIcon() 98 * Descr: 99 */ 100 status_t 101 BInputServerMethod::SetIcon(const uchar *icon) 102 { 103 status_t dummy; 104 105 return dummy; 106 } 107 108 109 /** 110 * Method: BInputServerMethod::SetMenu() 111 * Descr: 112 */ 113 status_t 114 BInputServerMethod::SetMenu(const BMenu *menu, 115 const BMessenger target) 116 { 117 status_t dummy; 118 119 return dummy; 120 } 121 122 123 /** 124 * Method: BInputServerMethod::_ReservedInputServerMethod1() 125 * Descr: 126 */ 127 void 128 BInputServerMethod::_ReservedInputServerMethod1() 129 { 130 } 131 132 133 /** 134 * Method: BInputServerMethod::_ReservedInputServerMethod2() 135 * Descr: 136 */ 137 void 138 BInputServerMethod::_ReservedInputServerMethod2() 139 { 140 } 141 142 143 /** 144 * Method: BInputServerMethod::_ReservedInputServerMethod3() 145 * Descr: 146 */ 147 void 148 BInputServerMethod::_ReservedInputServerMethod3() 149 { 150 } 151 152 153 /** 154 * Method: BInputServerMethod::_ReservedInputServerMethod4() 155 * Descr: 156 */ 157 void 158 BInputServerMethod::_ReservedInputServerMethod4() 159 { 160 } 161 162 163