Line | |
---|
1 | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
|
---|
2 | * Qwt Widget Library
|
---|
3 | * Copyright (C) 1997 Josef Wilgen
|
---|
4 | * Copyright (C) 2002 Uwe Rathmann
|
---|
5 | *
|
---|
6 | * This library is free software; you can redistribute it and/or
|
---|
7 | * modify it under the terms of the Qwt License, Version 1.0
|
---|
8 | *****************************************************************************/
|
---|
9 |
|
---|
10 | #include "qwt_plot.h"
|
---|
11 |
|
---|
12 | /*!
|
---|
13 | This method is intended for manipulating the plot widget
|
---|
14 | from a specific editor in the Qwt designer plugin.
|
---|
15 |
|
---|
16 | \warning The plot editor has never been implemented.
|
---|
17 | */
|
---|
18 | void QwtPlot::applyProperties( const QString & /* xmlDocument */ )
|
---|
19 | {
|
---|
20 | #if 0
|
---|
21 | // Temporary dummy code, for designer tests
|
---|
22 | setTitle( xmlDocument );
|
---|
23 | replot();
|
---|
24 | #endif
|
---|
25 | }
|
---|
26 |
|
---|
27 | /*!
|
---|
28 | This method is intended for manipulating the plot widget
|
---|
29 | from a specific editor in the Qwt designer plugin.
|
---|
30 |
|
---|
31 | \warning The plot editor has never been implemented.
|
---|
32 | */
|
---|
33 | QString QwtPlot::grabProperties() const
|
---|
34 | {
|
---|
35 | #if 0
|
---|
36 | // Temporary dummy code, for designer tests
|
---|
37 | return title().text();
|
---|
38 | #else
|
---|
39 | return QString::null;
|
---|
40 | #endif
|
---|
41 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.