diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:07:05 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-21 14:07:05 -0600 |
commit | c18386d69b76ef0218b5f0a08ca773fa824322b6 (patch) | |
tree | 0bea571897791e4a9ae01e42d0923c3c7baf0bda /src/base | |
parent | 97f1c43c867725d49f3943a68ef08d7e71767e99 (diff) | |
download | rosegarden-c18386d69b76ef0218b5f0a08ca773fa824322b6.tar.gz rosegarden-c18386d69b76ef0218b5f0a08ca773fa824322b6.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/LayoutEngine.h | 16 | ||||
-rw-r--r-- | src/base/ViewElement.h | 8 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/base/LayoutEngine.h b/src/base/LayoutEngine.h index aef429f..179d119 100644 --- a/src/base/LayoutEngine.h +++ b/src/base/LayoutEngine.h @@ -31,7 +31,7 @@ class TimeSignature; /** - * Base classes for tqlayout engines. The intention is that + * Base classes for layout engines. The intention is that * different sorts of renderers (piano-roll, score etc) can be * implemented by simply plugging different implementations * of Staff and LayoutEngine into a single view class. @@ -58,9 +58,9 @@ public: timeT endTime = 0) = 0; /** - * Precomputes tqlayout data for a single staff, updating any + * Precomputes layout data for a single staff, updating any * internal data stores associated with that staff and updating - * any tqlayout-related properties in the events on the staff's + * any layout-related properties in the events on the staff's * segment. * * If startTime == endTime, act on the whole staff; otherwise only @@ -71,10 +71,10 @@ public: timeT endTime = 0) = 0; /** - * Computes any tqlayout data that may depend on the results of + * Computes any layout data that may depend on the results of * scanning more than one staff. This may mean doing most of - * the tqlayout (likely for horizontal tqlayout) or nothing at all - * (likely for vertical tqlayout). + * the layout (likely for horizontal layout) or nothing at all + * (likely for vertical layout). * * If startTime == endTime, act on the whole staff; otherwise only * the given section. @@ -97,9 +97,9 @@ public: virtual ~HorizontalLayoutEngine(); /** - * Sets a page width for the tqlayout. + * Sets a page width for the layout. * - * A tqlayout implementation does not have to use this. Some might + * A layout implementation does not have to use this. Some might * use it (for example) to ensure that bar lines fall precisely at * the right-hand margin of each page. The computed x-coordinates * will still require to be wrapped into lines by the staff or diff --git a/src/base/ViewElement.h b/src/base/ViewElement.h index 58d312d..8cc3d09 100644 --- a/src/base/ViewElement.h +++ b/src/base/ViewElement.h @@ -53,7 +53,7 @@ public: /** * Returns the X coordinate of the element, as computed by the - * tqlayout. This is not the coordinate of the associated canvas + * layout. This is not the coordinate of the associated canvas * item. * * @see getCanvasX() @@ -62,7 +62,7 @@ public: /** * Returns the Y coordinate of the element, as computed by the - * tqlayout. This is not the coordinate of the associated canvas + * layout. This is not the coordinate of the associated canvas * item. * * @see getCanvasY() @@ -70,13 +70,13 @@ public: virtual double getLayoutY() const { return m_layoutY; } /** - * Sets the X coordinate which was computed by the tqlayout engine + * Sets the X coordinate which was computed by the layout engine * @see getLayoutX() */ virtual void setLayoutX(double x) { m_layoutX = x; } /** - * Sets the Y coordinate which was computed by the tqlayout engine + * Sets the Y coordinate which was computed by the layout engine * @see getLayoutY() */ virtual void setLayoutY(double y) { m_layoutY = y; } |