2005-12-29 22:55:22 +01:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2005 by Aaron Seigo <aseigo@kde.org>
|
2005-12-29 22:55:22 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2007-08-06 13:20:02 +02:00
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
2005-12-29 22:55:22 +01:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
2006-01-23 12:37:31 +01:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-12-29 22:55:22 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLASMA_DEFS_H
|
|
|
|
#define PLASMA_DEFS_H
|
|
|
|
|
2008-08-25 19:47:48 +02:00
|
|
|
/** @header plasma/plasma.h <Plasma/Plasma> */
|
|
|
|
|
2007-07-15 00:40:00 +02:00
|
|
|
#include <QtGui/QGraphicsItem>
|
2007-11-18 22:33:04 +01:00
|
|
|
#include <QtGui/QPainterPath>
|
2007-06-21 20:07:39 +02:00
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
#include <plasma/plasma_export.h>
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2008-07-17 01:48:41 +02:00
|
|
|
class QGraphicsView;
|
|
|
|
|
2007-05-24 00:45:21 +02:00
|
|
|
/**
|
|
|
|
* Namespace for everything in libplasma
|
|
|
|
*/
|
2005-12-29 22:55:22 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2007-10-02 01:24:38 +02:00
|
|
|
/**
|
2008-02-04 17:26:49 +01:00
|
|
|
* The Constraint enumeration lists the various constraints that Plasma
|
2007-10-02 01:24:38 +02:00
|
|
|
* objects have managed for them and which they may wish to react to,
|
|
|
|
* for instance in Applet::constraintsUpdated
|
|
|
|
*/
|
2007-10-26 03:10:13 +02:00
|
|
|
enum Constraint { NoConstraint = 0,
|
|
|
|
FormFactorConstraint = 1 /** The FormFactor for an object */,
|
2007-10-02 01:24:38 +02:00
|
|
|
LocationConstraint = 2 /** The Location of an object */,
|
|
|
|
ScreenConstraint = 4 /** Which screen an object is on */,
|
2007-11-25 00:37:18 +01:00
|
|
|
SizeConstraint = 8 /** the size of the applet was changed */,
|
2007-12-05 21:23:25 +01:00
|
|
|
ImmutableConstraint = 16 /** the immutability (locked) nature of the applet changed */,
|
2008-01-06 21:38:35 +01:00
|
|
|
StartupCompletedConstraint = 32 /** application startup has completed */,
|
2008-08-18 16:04:30 +02:00
|
|
|
ContextConstraint = 64 /** the desktop context has changed */,
|
|
|
|
AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint |
|
|
|
|
SizeConstraint | ImmutableConstraint | ContextConstraint
|
2007-10-02 01:24:38 +02:00
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(Constraints, Constraint)
|
|
|
|
|
2007-05-26 00:51:23 +02:00
|
|
|
/**
|
|
|
|
* The FormFactor enumeration describes how a Plasma::Applet should arrange
|
|
|
|
* itself. The value is derived from the container managing the Applet
|
|
|
|
* (e.g. in Plasma, a Corona on the desktop or on a panel).
|
|
|
|
**/
|
|
|
|
enum FormFactor { Planar = 0 /**< The applet lives in a plane and has two
|
|
|
|
degrees of freedom to grow. Optimize for
|
|
|
|
desktop, laptop or tablet usage: a high
|
|
|
|
resolution screen 1-3 feet distant from the
|
|
|
|
viewer. */,
|
|
|
|
MediaCenter /**< As with Planar, the applet lives in a plane
|
|
|
|
but the interface should be optimized for
|
|
|
|
medium-to-high resolution screens that are
|
|
|
|
5-15 feet distant from the viewer. Sometimes
|
|
|
|
referred to as a "ten foot interface".*/,
|
|
|
|
Horizontal /**< The applet is constrained vertically, but
|
|
|
|
can expand horizontally. */,
|
2008-02-04 17:26:49 +01:00
|
|
|
Vertical /**< The applet is constrained horizontally, but
|
2007-05-26 00:51:23 +02:00
|
|
|
can expand vertically. */
|
|
|
|
};
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2007-05-26 00:51:23 +02:00
|
|
|
/**
|
|
|
|
* The Direction enumeration describes in which direction, relative to the
|
|
|
|
* Applet (and its managing container), popup menus, expanders, balloons,
|
|
|
|
* message boxes, arrows and other such visually associated widgets should
|
|
|
|
* appear in. This is usually the oposite of the Location.
|
|
|
|
**/
|
|
|
|
enum Direction { Down = 0 /**< Display downards */ ,
|
|
|
|
Up /**< Display upwards */,
|
|
|
|
Left /**< Display to the left */,
|
|
|
|
Right /**< Display to the right */
|
|
|
|
};
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2008-04-25 21:08:49 +02:00
|
|
|
/**
|
|
|
|
* The direction of a zoom action.
|
|
|
|
*/
|
|
|
|
enum ZoomDirection { ZoomIn = 0 /**< Zoom in one step */,
|
|
|
|
ZoomOut = 1 /**< Zoom out one step */
|
|
|
|
};
|
|
|
|
|
2007-05-26 00:51:23 +02:00
|
|
|
/**
|
|
|
|
* The Location enumeration describes where on screen an element, such as an
|
|
|
|
* Applet or its managing container, is positioned on the screen.
|
|
|
|
**/
|
|
|
|
enum Location { Floating = 0 /**< Free floating. Neither geometry or z-ordering
|
|
|
|
is described precisely by this value. */,
|
|
|
|
Desktop /**< On the planar desktop layer, extending across
|
|
|
|
the full screen from edge to edge */,
|
2007-06-02 06:47:09 +02:00
|
|
|
FullScreen /**< Full screen */,
|
2007-05-26 00:51:23 +02:00
|
|
|
TopEdge /**< Along the top of the screen*/,
|
|
|
|
BottomEdge /**< Along the bottom of the screen*/,
|
|
|
|
LeftEdge /**< Along the left side of the screen */,
|
|
|
|
RightEdge /**< Along the right side of the screen */
|
|
|
|
};
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2007-09-16 11:08:08 +02:00
|
|
|
/**
|
|
|
|
* The position enumeration
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
enum Position { LeftPositioned /**< Positioned left */,
|
|
|
|
RightPositioned /**< Positioned right */,
|
2008-09-13 19:09:34 +02:00
|
|
|
TopPositioned /**< Positioned top */,
|
2007-09-16 11:08:08 +02:00
|
|
|
BottomPositioned /**< Positioned bottom */,
|
|
|
|
CenterPositioned /**< Positioned in the center */
|
|
|
|
};
|
|
|
|
|
2008-09-12 19:16:58 +02:00
|
|
|
/**
|
|
|
|
* The popup position enumeration relatively to his attached widget
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
enum PopupPlacement { FloatingPopup = 0 /**< Free floating, non attached popup */,
|
|
|
|
TopPosedLeftAlignedPopup /**< Popup positioned on the top, aligned to the left of the wigdet */,
|
|
|
|
TopPosedRightAlignedPopup /**< Popup positioned on the top, aligned to the right of the widget */,
|
|
|
|
LeftPosedTopAlignedPopup /**< Popup positioned on the left, aligned to the right of the wigdet */,
|
|
|
|
LeftPosedBottomAlignedPopup /**< Popup positioned on the left, aligned to the bottom of the widget */,
|
|
|
|
BottomPosedLeftAlignedPopup /**< Popup positioned on the bottom, aligned to the left of the wigdet */,
|
|
|
|
BottomPosedRightAlignedPopup /**< Popup positioned on the bottom, aligned to the right of the widget */,
|
|
|
|
RightPosedTopAlignedPopup /**< Popup positioned on the right, aligned to the top of the wigdet */,
|
|
|
|
RightPosedBottomAlignedPopup /**< Popup positioned on the right, aligned to the bottom of the widget */
|
|
|
|
};
|
|
|
|
|
2007-12-11 10:06:21 +01:00
|
|
|
/**
|
|
|
|
* Flip enumeration
|
|
|
|
*/
|
|
|
|
enum FlipDirection { NoFlip = 0 /**< Do not flip */,
|
|
|
|
HorizontalFlip = 1 /**< Flip horizontally */,
|
|
|
|
VerticalFlip = 2 /**< Flip vertically */
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(Flip, FlipDirection)
|
|
|
|
|
2007-07-26 00:43:43 +02:00
|
|
|
/**
|
|
|
|
* Zoom levels that Plasma is aware of...
|
|
|
|
**/
|
|
|
|
enum ZoomLevel { DesktopZoom = 0 /**< Normal desktop usage, plasmoids are painted normally and have full interaction */,
|
|
|
|
GroupZoom /**< Plasmoids are shown as icons in visual groups; drag and drop and limited context menu interaction only */ ,
|
|
|
|
OverviewZoom /**< Groups become icons themselves */
|
|
|
|
};
|
|
|
|
|
2007-09-12 19:53:54 +02:00
|
|
|
/**
|
|
|
|
* Possible timing alignments
|
|
|
|
**/
|
|
|
|
enum IntervalAlignment { NoAlignment = 0,
|
|
|
|
AlignToMinute,
|
|
|
|
AlignToHour };
|
|
|
|
|
|
|
|
|
2007-06-21 20:07:39 +02:00
|
|
|
enum ItemTypes { AppletType = QGraphicsItem::UserType + 1,
|
|
|
|
LineEditType = QGraphicsItem::UserType + 2
|
|
|
|
};
|
|
|
|
|
2008-04-24 20:24:11 +02:00
|
|
|
/**
|
|
|
|
* Defines the immutability of items like applets, corona and containments
|
|
|
|
* they can be free to modify, locked down by the user or locked down by the system (e.g. kiosk setups)
|
|
|
|
*/
|
2008-05-08 06:26:52 +02:00
|
|
|
enum ImmutabilityType { Mutable = 1 /**< The item can be modified in any way **/,
|
2008-05-01 00:13:27 +02:00
|
|
|
UserImmutable = 2 /**< The user has requested a lock down, and can undo the lock down at any time **/,
|
|
|
|
SystemImmutable = 4 /**< the item is locked down by the system, the user can't unlock it **/
|
2008-04-24 20:24:11 +02:00
|
|
|
|
|
|
|
};
|
2008-04-29 22:31:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines the aspect ratio used when scaling an applet
|
|
|
|
*/
|
2008-09-13 19:09:34 +02:00
|
|
|
enum AspectRatioMode { InvalidAspectRatioMode = -1 /**< Unsetted mode used for dev convenience when there is a need to store the
|
2008-07-28 01:23:57 +02:00
|
|
|
aspectRatioMode somewhere */,
|
|
|
|
IgnoreAspectRatio = 0 /**< The applet can be freely resized */,
|
2008-05-01 00:13:27 +02:00
|
|
|
KeepAspectRatio = 1 /**< The applet keeps a fixed aspect ratio */,
|
2008-06-04 20:58:38 +02:00
|
|
|
Square = 2 /**< The applet is always a square */,
|
2008-09-13 19:09:34 +02:00
|
|
|
ConstrainedSquare = 3 /** The applet is no wider (in horizontal formfactors) or no higher (in vertical ones) than a square */,
|
|
|
|
FixedSize = 4 /** The applet cannot be resized */
|
2008-05-01 00:13:27 +02:00
|
|
|
};
|
2008-04-29 22:31:18 +02:00
|
|
|
|
2008-01-25 01:11:11 +01:00
|
|
|
/**
|
|
|
|
* The ComonentType enumeration refers to the various types of components,
|
|
|
|
* or plugins, supported by plasma.
|
|
|
|
*/
|
|
|
|
enum ComponentType { AppletComponent = 1 /**< Plasma::Applet based plugins **/,
|
|
|
|
DataEngineComponent = 2 /**< Plasma::DataEngine based plugins **/,
|
|
|
|
RunnerComponent = 4 /**< Plasma::AbstractRunner based plugsin **/,
|
|
|
|
AnimatorComponent = 8 /**< Plasma::Animator based plugins **/,
|
|
|
|
ContainmentComponent = 16 /**< Plasma::Containment based plugins **/
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(ComponentTypes, ComponentType)
|
|
|
|
|
2008-02-06 20:12:21 +01:00
|
|
|
enum MarginEdge { TopMargin = 0,
|
|
|
|
BottomMargin,
|
|
|
|
LeftMargin,
|
|
|
|
RightMargin
|
|
|
|
};
|
|
|
|
|
2007-07-26 00:43:43 +02:00
|
|
|
/**
|
|
|
|
* @return the scaling factor (0..1) for a ZoomLevel
|
|
|
|
**/
|
|
|
|
PLASMA_EXPORT qreal scalingFactor(ZoomLevel level);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a location to a direction. Handy for figuring out which way to send a popup based on
|
|
|
|
* location or to point arrows and other directional items.
|
|
|
|
*
|
|
|
|
* @param location the location of the container the element will appear in
|
|
|
|
* @reutrn the visual direction of the element should be oriented in
|
|
|
|
**/
|
2007-05-26 00:51:23 +02:00
|
|
|
PLASMA_EXPORT Direction locationToDirection(Location location);
|
2005-12-29 22:55:22 +01:00
|
|
|
|
2008-07-17 01:48:41 +02:00
|
|
|
/**
|
|
|
|
* Reccomended position for a popup window like a menu or a tooltip
|
|
|
|
* given its size
|
|
|
|
* @param s size of the popup
|
|
|
|
* @returns reccomended position
|
|
|
|
*/
|
|
|
|
PLASMA_EXPORT QPoint popupPosition(const QGraphicsItem *item, const QSize &s);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the most appropriate QGraphicsView for the item.
|
|
|
|
*
|
|
|
|
* @arg item the QGraphicsItem to locate a view for
|
|
|
|
* @return pointer to a view, or 0 if none was found
|
|
|
|
*/
|
|
|
|
PLASMA_EXPORT QGraphicsView *viewFor(const QGraphicsItem *item);
|
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
} // Plasma namespace
|
|
|
|
|
2007-10-02 01:24:38 +02:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(Plasma::Constraints)
|
2007-12-11 10:06:21 +01:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(Plasma::Flip)
|
2008-01-25 01:11:11 +01:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(Plasma::ComponentTypes)
|
2007-10-02 01:24:38 +02:00
|
|
|
|
2005-12-29 22:55:22 +01:00
|
|
|
#endif // multiple inclusion guard
|