You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Nils 3e35f384ea Better configure checks and logs 12 months ago
desktop desktop file with nsm flags 1 year ago
documentation Update documentation and info files 1 year ago
engine additional data for api 2 years ago
qtgui 2022 files 2 years ago
template Better configure checks and logs 12 months ago
.gitignore trivial 2 years ago
CHANGELOG changelog 1 year ago
LICENSE Extend LICENSE file with clear intentions and information about files without headers. Everything here is free and open source, except the branding 3 years ago
README.md Update documentation and info files 1 year ago
__main__.py adopt to new build system 3 years ago
configure Update documentation and info files 3 years ago
exampleClientCboxQtNsm adopt to new build system 3 years ago
mypy.ini mypy.ini 2 years ago

README.md

QtCboxNsm Exämple ツ

Program version 1.6.2

![Screenshot](https://git.laborejo.org/lss/QtCboxNsm Exämple ツ/raw/branch/master/documentation/screenshot.png "Screenshot")

"This is an example application.

It shows a minimal implementation of PyQt, Calfbox and NSM Client working together.

Workflow summary: Actually nothing. This is for development tests, mostly for the template.

This README is just a short introduction. Consult the manual (see below) for more information.

Contact and Information

Installation and Starting

Download

Release Version

If the latest release is not available through your package manger you can build it yourself: Download the latest code release on https://www.laborejo.org/downloads and extract it.

Git Version

It is possible to clone a git repository.

git clone https://git.laborejo.org/lss/exampleClientCboxQtNsm.git

Dependencies

Environment:

  • Jack Audio Connection Kit must be running
  • Optional: Agordejo / New Session Manager ("NSM")

Build

./configure --prefix=/usr/local
make
sudo make install

Starting

There are multiple ways to run QtCboxNsm Exämple ツ which should give you the flexibility to configure your system as you want.

We make no distinction if you installed QtCboxNsm Exämple ツ yourself or through the distributions package-manager.

The differences are: With or without Agordejo, with or without sound, installed or from the source dir.

Starting QtCboxNsm Exämple ツ through Agordejo after you installed exampleClientCboxQtNsm system-wide is the recommended and only supported way. Start agordejo and load or create a new session. Then use the program launcher to add exampleClientCboxQtNsm. It should appear with an icon in the list and open its GUI.

Installed without Agordejo

If you start exampleClientCboxQtNsm directly it will present you with a dialog to choose your session directory.

You can also start exampleClientCboxQtNsm from a terminal (or create a starter script).

exampleClientCboxQtNsm --save DIRECTORY

Uses the given directory to save. The dir will be created or loaded from if already present. Use the applications file menu to save (Ctrl+s).

You can use this to load and save the files from an existing NSM session. If you create a new directory you can copy it manually to an NSM session directory, but that requires renaming the directory to append the unique ID provided by NSM.

Sending SIGUSR1 to the program in this mode will trigger a save.

Closing through your window manager in this mode will actually quit the application without a prompt to save changes.

From source directory

You can run QtCboxNsm Exämple ツ after extracting the release archive or cloning from git, without installation.

From source directory with NSM

The developer uses this way to develop and use the software, so it will always be as stable as the compiled version. But it is a bit less performant than building and installing it.

After extracting the release archive create a symlink from exampleClientCboxQtNsm into your PATH. e.g. /usr/bin or ~/bin, if that exists on your system.

If you compiled without installing you can also symlink to ./exampleClientCboxQtNsm.bin

From source dir without NSM

Use ./exampleClientCboxQtNsm --save (see above). If you compiled without installing you can also run ./exampleClientCboxQtNsm.bin

No NSM, no Make, No Sound

Combining the above options you can start the program directly after unpacking or cloning from git:

./exampleClientCboxQtNsm --save /tmp --mute

Or even shorter:

./exampleClientCboxQtNsm -s /tmp -m

This is the minimal run mode which is only useful for testing and development. But if you only want to look at the GUI and are not in the mood to install anything -including dependencies-, go ahead.