10 projects tagged "User Interfaces"
Wt is a C++ library for developing Web applications with an API that is widget-centric and inspired by existing C++ graphical user interface APIs. To the developer, it offers abstraction of Web-specific implementation details, increasing the accessibility and portability. Under the hood, the library uses the latest techniques (HTML5, Ajax, WebSockets) to handle user events and update the Web page.
U++ is a C++ cross-platform rapid application development suite focused on programmers' productivity without sacrificing runtime performance. Based on strictly deterministic design, it provides a viable alternative to garbage-collected platforms, even for business logic oriented problems.
CCFE is a simple tool to quickly supply an interactive screen-oriented interface to command line scripts and commands. It prompts users for the information needed to run the commands, and can be programmed with your preferred shell to provide predefined selections and run-time defaults. It also provides a menu system to hierarchically organize them and a viewer to browse the standard output and standard error of invoked scripts or commands.
Wimpiggy is a library for writing EWMH-compliant, compositing window managers using Python and GTK+. The goal is to make writing a window manager as easy as writing a PyGTK application. This library can be used to build a trivial, working window manager in only about 40 lines of code.
relman is a tool that takes your source code, runs the build, and distributes the packages. A configuration file allows you to define application-wide defaults in addition to information particular to individual projects such as the source directory, package name, and the like. Once set up, you just have to call relman with the name given to the project plus the version to release. It calls pkgmake to build .tar.gz, .deb, and .rpm files, and then distributes them using (s)FTP, RSync, and/or SCP all in one run.
TinkerBell is a application development tool for Ruby Web Dialogs. It can be used to develop GUI and Ruby code and a complete application. It works under rwdtinker, the core application for the rwdapplications. Rwdtinker can install and delete installed applets. This program uses the RubyWebDialogs GUI interface, and can be added to with drop-in applets. There are about 14 applets that can be installed. Context-sensitive help is on the windows and tabs.
process-getopt is a wrapper around getopt(1) for bash that allows a developer to define command line options with their descriptions through a single function call. These definitions are then used in runtime processing of command line options as well as in generating help and man pages. This results in more internal consistency in bash scripts, particularly when they are maintained and changed later. It also saves a little time in coding and producing nicely formatted documentation. It is quite similar to GNU's argp in glibc for compiled languages. Samples and a manual are included.