HTC Thunderbolt


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? HTC Thunderbolt
# 1  
Old 04-20-2011
Well, even on my 2nd day I am doing much better than yesterday at typing. My biggest problem right now is that I can't find a holster for it. The weight issue that my manager heard about is just silly. It never would have occurred to me to comment about it. Just turning off some of the many apps that were running has pushed the battery life past 24 hours and I can live with that. Someone commented about complexity... I will need a few more days to get used to all of the features, but I don't see any needless complexity. And anyway... I like complexity. Smilie

It's a big step up from my old blackberry and I think I'll keep it. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Hardware

HTC Desire S vs HTC Desire C - USB Android tethering problem

Hi gurus, I have problem with android usb tethering (usb0 interface). I tried two phones HTC Desire C and HTC Desire S. With Desire C everything works as expected, usb0 automatically goes up and gains IP address and tethering is working (output bellow) HTC Desire C: Nov 6 23:32:36 HP-PC... (0 Replies)
Discussion started by: wakatana
0 Replies

2. Ubuntu

Synchronizing with HTC Fuze

I have been trying to synchronise my calendar and contacts using Ubuntu and Windows Mobile on my HTC smart phone. I have read who knows how many posts, threads, blogs but still can't get this to work. I have synce installed, when I plug in my phone it recognises the phone, and lets me view... (2 Replies)
Discussion started by: naiku
2 Replies
Login or Register to Ask a Question
glutTabletButtonFunc(3GLUT)					       GLUT					       glutTabletButtonFunc(3GLUT)

NAME
glutTabletButtonFunc - sets the special keyboard callback for the current window. SYNTAX
#include <GLUT/glut.h> void glutTabletButtonFunc(void (*func)(int button, int state, int x, int y)); ARGUMENTS
func The new tablet button callback function. DESCRIPTION
glutTabletButtonFunc sets the tablet button callback for the current window. The tablet button callback for a window is called when the window has tablet input focus (normally, when the mouse is in the window) and the user generates tablet button presses. The button parame- ter will be the button number (starting at one). The number of available tablet buttons can be determined with glutDe- viceGet(GLUT_NUM_TABLET_BUTTONS). The state is either GLUT_UP or GLUT_DOWN indicating whether the callback was due to a release or press respectively. The x and y callback parameters indicate the window relative coordinates when the tablet button state changed. Registering a tablet button callback when a tablet device is not available is ineffectual and not an error. In this case, no tablet button callbacks will be generated. Passing NULL to glutTabletButtonFunc disables the generation of tablet button callbacks. When a new window is created, no tablet button callback is initially registered. SEE ALSO
glutTabletMotionFunc, glutDeviceGet, glutMotionFunc, glutSpaceballMotionFunc AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutTabletButtonFunc(3GLUT)