widget

Android: Sliding button container widget

I am running out of room on my app for buttons, so I want to stick them into some sort of sliding container, like the one at the top of the Astro File Manager app. How do I go about doing this? I've Googled this and can't find anything. ...

Saving checkbox value in wordpress widget issue

I created a custom Flickr Widget for Wordpress and successfully set up an options form for users to enter their Flickr information, but I cannot get the checkbox in the form to save whether or not it is checked. Any help would be greatly appreciated! Here are my widget(), form(), and update() functions: function widget($args, $instance)...

Android update Widget from a button click

Hello everybody, I have a widget that shows some informations from database. The widget is periodically updated every one hour. But i also let user to update it manually by clicking a refresh button on widget.How can i perform the click action and refresh the widget? Note: The widget uses service to perform operations. Thanx in advan...

security for web widgets - site / user key?

Hi Folks Planning to create a widget for client sites that uses jsonp to interact with my server. jsonp because i'll need to skirt the same-origin-policy (don't want to trouble clients with using server redirects), but i realize this limits me to http GET. I'll need users to login/identify themselves before they can interact more with th...

Creating a Website Widget / API

Hi all, I recently created a website for a friend (asp.net/sql server), the website includes news of his company and he and his team update this frequently. The question has been asked if i could now create a widget / api of some sort that visitors of the website could now include the news on there own website should they wish too. I f...

What Qt widget(s) to use for read-only, scrollable, collapsible, icon list

I'm relatively new to Qt, and am not entirely familiar with the out-of-the-box widgets. I have a somewhat (but not very) complex widget to create, and don't want to reinvent any wheels. What is the best QWidget to use as a starting point to subclass and/or QWidgets to use to compose my widget. Here is the end-result I am looking for (apo...

Android - DatePicker widget problem

Hi, I am trying to create activity with few controls and a DatePicker widget. And I am facing one strange problem that I can not explain. If I set activity that has only DatePicker widget shown app works. And if I set activity that has other controls without DatePicker it works too. But when I show them both I get a NullPointer Excep...

Android widget intents

I have a widget class and a service class updating the widget. I have added in the widget class in onUpdate() the following code: RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.countdownwidget); Intent Intent1 = new Intent(Intent.ACTION_MAIN); Intent1.addCategory(Intent.CATEGORY_LAUNCHER); PendingIntent ...

Ocaml lablgtk2 custom widget?

Hi everyone. I've been learning Ocaml with lablgtk2 for a while and still searching for a tutorial in which describe a way to create a custom widget (I want to make this widget as a circle filled with color and some text in the center). And this custom widget can be set ~width, ~height, ~label, ~packing,... to another container (as anoth...

Displaying an image when hovering a label

Hey everybody, I'm wondering if there is a simple and quick way of displaying an image when the user hovers a QLabel... Since QLabel can be used to display QPixmap, I would like to display some kind of "preview" when hovering a QLabel... Do you guys know how I could manage this ? Thanks in advance ! ...

Ext JS Tree with Grid in nodes - combine widgets

I'm looking for a solution on how to combine two widgets. I'm taling about the Tree widget and the Grid widget in such way that f.e. every node of tree represents a database table and after expanding it shows record in a grid widget. Is there a way to combine those two in one ? ...

"Share this link" HTML Widget

Are you aware of any HTML Widget (Jquery?) that can be integrated in a dynamic web page allowing users to share the visited link to well known social networks like "Delicious, Facebook, Twitter..etc etc."? It would be cool a customizable solution that can be tuned to match the graphic layout (colors, font) of the site. I would like to ...

How to play an asx into wordpress sidebar?

I'm searching for a widget that can play an asx file into wordpress sidebar. If this widget exists, where can i find it? ...

Is there good planning GUI component (widget) for python?

I'm working on a scheduling app and looking for a calendar, timeline or other planning related GUI component for Python. Are you aware of any ? ...

Twitter OAuth callback issues for web widget

Our website lets users create small widgets that can be embedded on other third party sites. When an end-user interacts with our widget on some site, we want to post a twitter update on his/her behalf and then display a message to the user on the widget itself(provided the twitter update was successful). We've been using the twitter api ...

Qt WYSIWYG editor - non-editable/generated regions

I am developing a WYSIWYG document editor. The editor is build around the Qt framework because Linux/KDE is the main platform it will run on. I have been using the QTextEdit widget so far and have gotten basic text editing and formatting in. However I've come to a standstill on how to implement the following requirement: A document is ...

Android: Not more than 1 nine patch image at a time?!

Hi, I am having problems with nine patch images ( **.9.png ). I have a widget layout and would like to use nine patch images for the widget's backgroud. Here is my background.xml <selector xmlns:android="http://schemas.android.com/apk/res/android"&gt; <item android:state_focused="true" android:state_pressed="true" android:drawable=...

python qt, display text/label above another widget(phonon)

I'm making a video player using PySide which is a python bind to the Qt framework. I'm using phonon(a module) to display the video and I want to display text above the video as a subtitle. How can I put another widget above my phonon widget. Is opengl an option? ...

How to install widgets on Samsung gt-5233w

I have Samsung Star wifi and bunch of widgets . Java application are easily installed just by opening them . but widgets say invalid file types !! whereas by change 2 widgets get installed with same procedure. is there any error in lines. further few games dont work at potrait mode what amendment is to be made in there files ? Kind Rega...

Android widget vanishes from emulator on remoteviews update

My MySQL DB table holds a BLOB image with image_id as key. I am trying to do the following. 1.HttpPost("http://example.com/RetrieveImage.php") from Android App with the image_id in name value pairs. The PHP Script is as follows: <?php mysql_connect("host","userid","password"); mysql_select_db("database"); $q=mysql_query("SELECT image ...