widgets

Is there an Eclipse RCP Calendar Widget I can add objects to?

Hi. I'm writing an Eclipse RCP app and want to add a calendar widget showing things happening each day (like the calendar on an Android phone). I've seen the Nebula DateChooser, but this seems more for choosing a date than static display of information. Features I would like: - Ability to add items to the calendar and the date to be ...

Keep widget on top in Qt

I'm creating an application which has a "floating" widget which can be dragged around inside the application window. But it starts up, or tends to go behind other widgets sometimes. Is there any way to make sure that the widget in my application stays on top of all other widgets whenever it is made visible? Thanks. ...

Widgets and .mobi sites, is this possible?

I have a couple of concerns, I'm busy building a normal .mobi site for a client, so basically how I understand this is keep it simply since most phones do not support JavaScript and have a small screen etc. So I build a mobi site using only content and basic links. Now my question is how do mobi widgets work on a mobile site? I've google...

Processing more than one button click at Android Widget

Hi, all. I saw this topic and implement IntentService as describes, but what if I want more that one button? How can I distinguish button from each other? I'm trying to setFlags, but cannot read it at onHandleIntent() method: public static class UpdateService extends IntentService { ... @Override public void onHandleIntent(Int...

In an ASP.NET Web Site Project, what is the best option to manage modular widgets

We are creating a modular Web Site Project and all the UI is based on simple html pages with javascript widgets. These widgets obtain the data from a WCF class located in the app_code folder. This class is generic and works for all widgets, but needs to instantiate specific classes for each widget and those classes need to be distribut...

How to delete a widget from a stacked widget in Qt

Hi, I am using QStackedWidget to switch between the views, I will be able to traverse between the views, I am facing problem in some scenario, where I do not require the widgets, I want to remove them completely.. QStackedWidget provides the functionality to remove widgets, still the ownership of the widget will be there, I mean widget ...

Remote Scripting in Opera handheld widget

I have to do a widget that calls functions from a remote javascript file, my problem is that i dont know how configure that in config.xml. ...

How to Generate Embeddable Widgets, and Return PartialView, JS & CSS as JSONP?

I found this question which is a great starting point towards creating embedded widgets that enable showing dynamic content on remote sites (i.e. a different domain). One problem I'm having is with the following code: public ActionResult SomeAction() { return new JsonpResult { Data = new { Widget = "some partial html fo...

Are there any open source and free calendar UI reusable components?

We need to implement scheduling subsystem. And we plan to integrate subsystem with our desktop and online applications. But we would like to reuse as many components as possible. One component that we want to reuse is the one for displaying date periods, calendar with events. Most scheduling systems like Outlook, Google Calendar have sim...

DOM object cloner Javascript widget

Could somebody suggest me a widget that can take an existing DOM object (like a table row) and clone it/add it to DOM after the existing original object and also allow to remove it or add others. To explain myself better about what I want here is an example. Lets say I have a table with one initial row (contains a number of empty field...

System.Gadget.version alternative for Mac OS widget

Hello. I need to get version of widget in javascript in Mac OS but i can't to find the System.Gadget.version alternative for Mac OS. Please help me. ...

how to add multiple widgets in one app?!!

Hello, I've just finished my Android widget. Now I need to have different sizes of this wiget for the user to choose from. for example I need a medium, small and large size widget. so when the user install the app and hold the the home screen then choose widget, in the widget menu I want him to see three widget with the same app name ...

How to implement translation & rotation widgets for game level editor.

I am developing game editor.To detect mouse hit on 3D model I am using mouse picking concept. But I want to implement translation & rotation widgets like other game editor with actual arrows at the center of model in three direction. How to achieve this..? Can anyone suggest sample code for the same? ...

Inter Widget Communication for iGoogle like portals

I was looking for a platform where widgets developed using various technologies like Java can communicate with each other. In other words When I add widgets to an interface I need them to talk to each other. For example A Click event in one widget should trigger an event in some other widget. I have been looking into the web for soluti...

Please Tell me how to create a widget.

Please help me to solve my problem. i want to create a widgets, which other user can place on their web sites. Like we place counter widget on our blog.. same way i want that user can register on my website and he can get a certain code which he can put in his javascript (or any other) area. and my widget will retrieve data from my serve...

Cross-platform high-level widget toolkits for C

Are there any high-level, cross-platform, and abstracted (simple to use) widget toolkits for C that are either very lightweight and fast or can be compiled for other toolkits, such as Qt and GTK+? EDIT: Most C++ libraries lack C bindings, so they will be of little (or no) help. ...

How to enable editing for QTableWidget

I'm using QTableWidget as view widget and QTableWidgetItem as items. How to enable editing for specific QTableWidgetItem cells? ...

Android: Adding data to Intent fails to load Activity

I have a widget that supposed to call an Activity of the main app when the user clicks on widget body. My setup works for a single widget instance but for a second instance of the same widget the PendingIntent gets reused and as result the vital information that I'm sending as extra gets overwritten for the 1st instance. So I figured tha...

Help on QStackedWidget

Hi Geeks, I am using a QStackedWidget on my mainWindow. The firstPageWidget on stackedWidget contains 3 buttons. Now If I will press the first button on firstPage, I want the stackedWidget show the 2nd Page widget. Following are the details I tried to connect like this in my mainwindow connect(firstPageWidget->button1,SIGNAL(clicked()...

Dynamic choices for Django SelectMultiple Widget

I'm building a form (not modelForm) where i'd like to use the SelectMultiple Widget to display choices based on a query done during the init of the form. I can think of a few way to do this but I am not exactly clear on the right way to do it. I see different options. I get the "choices" I should pass to the widget in the form init but...