mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
5767be9b18
--HG-- extra : rebase_source : 2e682062b0c4fe3c1e916ed7c7b7ca98ec3b54d3
40 lines
805 B
C++
40 lines
805 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef __inFlasher_h__
|
|
#define __inFlasher_h__
|
|
|
|
#include "inIFlasher.h"
|
|
#include "nsCoord.h"
|
|
#include "nsColor.h"
|
|
|
|
#define BOUND_INNER 0
|
|
#define BOUND_OUTER 1
|
|
|
|
#define DIR_VERTICAL 0
|
|
#define DIR_HORIZONTAL 1
|
|
|
|
class inFlasher MOZ_FINAL : public inIFlasher
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_INIFLASHER
|
|
|
|
inFlasher();
|
|
|
|
protected:
|
|
virtual ~inFlasher();
|
|
|
|
nscolor mColor;
|
|
|
|
uint16_t mThickness;
|
|
bool mInvert;
|
|
};
|
|
|
|
// {9286E71A-621A-4b91-851E-9984C1A2E81A}
|
|
#define IN_FLASHER_CID \
|
|
{ 0x9286e71a, 0x621a, 0x4b91, { 0x85, 0x1e, 0x99, 0x84, 0xc1, 0xa2, 0xe8, 0x1a } }
|
|
|
|
#endif // __inFlasher_h__
|