QC Native 1.3
the native iOS implementation of
Objective-C/QC Base/QC Base/QCControlObject.h
00001 /*
00002  Copyright (c) 2008, 2009 Lee Barney
00003  Permission is hereby granted, free of charge, to any person obtaining a 
00004  copy of this software and associated documentation files (the "Software"), 
00005  to deal in the Software without restriction, including without limitation the 
00006  rights to use, copy, modify, merge, publish, distribute, sublicense, 
00007  and/or sell copies of the Software, and to permit persons to whom the Software 
00008  is furnished to do so, subject to the following conditions:
00009  
00010  The above copyright notice and this permission notice shall be 
00011  included in all copies or substantial portions of the Software.
00012  
00013  
00014  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
00015  INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
00016  PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
00017  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
00018  CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 
00019  OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00020  
00021  */
00022 
00023 
00024 #import <UIKit/UIKit.h>
00025 
00026 #ifdef UI_USER_INTERFACE_IDIOM
00027 #define IS_IPAD() (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
00028 #else
00029 #define IS_IPAD() (false)
00030 #endif
00031 
00032 #define QC_STACK_CONTINUE      (BOOL)1            
00033 #define QC_STACK_EXIT          (BOOL)0
00034 
00042 @interface QCControlObject : NSObject {
00043 
00044 }
00050 + (id) handleIt:(NSMutableDictionary*) parameters;
00051 @end
 All Classes Functions