~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to noatun/noatun/modules/liszt/Static.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2000 Rik Hemsley (rikkus) <rik@kde.org>. All rights reserved.
 
3
 *
 
4
LICENSE
 
5
 */
 
6
 
 
7
#include <qbitmap.h>
 
8
#include "pixmaps.h"
 
9
#include "Static.h"
 
10
 
 
11
Static * Static::instance_ = 0L;
 
12
 
 
13
Static::Static()
 
14
{
 
15
  pix_["close"]     = QPixmap((const char **)(px_close));
 
16
  pix_["playlist"]  = QPixmap((const char **)(px_playlist));
 
17
  pix_["album"]     = QPixmap((const char **)(px_album));
 
18
  pix_["artist"]    = QPixmap((const char **)(px_artist));
 
19
  pix_["track"]     = QPixmap((const char **)(px_track));
 
20
  pix_["next"]      = QPixmap((const char **)(px_next));
 
21
  pix_["stop"]      = QPixmap((const char **)(px_stop));
 
22
  pix_["previous"]  = QPixmap((const char **)(px_previous));
 
23
  pix_["play"]      = QPixmap((const char **)(px_play));
 
24
  pix_["pause"]     = QPixmap((const char **)(px_pause));
 
25
  pix_["x"]         = QPixmap((const char **)(px_x));
 
26
  pix_["plus"]      = QPixmap((const char **)(px_plus));
 
27
  pix_["minus"]     = QPixmap((const char **)(px_minus));
 
28
  pix_["config"]    = QPixmap((const char **)(px_config));
 
29
}
 
30