forked from amazingfate/loongoffice
The image I got from TDF wiki. I tried to show the text semitransparent also, but set font color with any alpha degree (eg. setTransparency(254) ) made it invisible. Maybe just a gray shade? Change-Id: Iaf7efb8433e9db03862825148ed2013588a5468f Signed-off-by: Rodolfo Ribeiro Gomes <rodolforg@gmail.com>
37 lines
843 B
Plaintext
37 lines
843 B
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* 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/.
|
|
*/
|
|
|
|
#include "templateview.hrc"
|
|
|
|
PushButton BTN_ALL_TEMPLATES
|
|
{
|
|
Pos = MAP_APPFONT( 1, 1 );
|
|
Size = MAP_APPFONT( 50, 14 );
|
|
Text [ en-US ] = "All Templates";
|
|
TabStop = True;
|
|
};
|
|
|
|
FixedText FT_NAME
|
|
{
|
|
Pos = MAP_APPFONT( 52, 4 );
|
|
Size = MAP_APPFONT( 238, 12 );
|
|
};
|
|
|
|
String STR_WELCOME
|
|
{
|
|
Text [ en-US ] = "Welcome! You can open or create a new document!";
|
|
};
|
|
|
|
Image IMG_WELCOME
|
|
{
|
|
ImageBitmap = Bitmap { File = "logo.png" ; };
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|