wlmaker
|
#include "titlebar.h"
#include <cairo.h>
#include <libbase/libbase.h>
#include <stdlib.h>
#include <wlr/interfaces/wlr_buffer.h>
#include "box.h"
#include "container.h"
#include "primitives.h"
#include "titlebar_button.h"
#include "titlebar_title.h"
#include "window.h"
Classes | |
struct | _wlmtk_titlebar_t |
Variables | |
static const wlmtk_element_vmt_t | titlebar_element_vmt |
static const uint32_t | _wlmtk_titlebar_default_properties |
const bs_test_case_t | wlmtk_titlebar_test_cases [] |
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
static |
Compute positions of the titlebar elements, if configured.
This method updates wlmtk_titlebar_t::close_position, wlmtk_titlebar_t::title_position and wlmtk_titlebar_t::title_width.
titlebar_ptr |
|
static |
Virtual destructor, wraps to our dtor.
|
static |
Redraws the titlebar elements.
|
static |
Redraws the titlebar's background in appropriate size.
|
static |
Tests setup and teardown.
|
static |
Tests titlebar with configured properties.
|
static |
Tests titlebar with variable width.
wlmtk_titlebar_t * wlmtk_titlebar_create | ( | wlmtk_window_t * | window_ptr, |
const wlmtk_titlebar_style_t * | style_ptr | ||
) |
Creates a title bar, suitable as a window title.
window_ptr | |
style_ptr |
void wlmtk_titlebar_destroy | ( | wlmtk_titlebar_t * | titlebar_ptr | ) |
Destroys the title bar.
titlebar_ptr |
wlmtk_element_t * wlmtk_titlebar_element | ( | wlmtk_titlebar_t * | titlebar_ptr | ) |
Returns the super Element of the titlebar.
titlebar_ptr |
bool wlmtk_titlebar_is_activated | ( | wlmtk_titlebar_t * | titlebar_ptr | ) |
Returns whether the title bar is activated.
void wlmtk_titlebar_set_activated | ( | wlmtk_titlebar_t * | titlebar_ptr, |
bool | activated | ||
) |
Sets whether the title bar is activated.
titlebar_ptr | |
activated |
void wlmtk_titlebar_set_properties | ( | wlmtk_titlebar_t * | titlebar_ptr, |
uint32_t | properties | ||
) |
Sets the properties of the title bar.
titlebar_ptr | |
properties | See wlmtk_titlebar_property_t. |
void wlmtk_titlebar_set_title | ( | wlmtk_titlebar_t * | titlebar_ptr, |
const char * | title_ptr | ||
) |
Updates the title text of the titlebar.
titlebar_ptr | |
title_ptr | Expected to remain valid until the next call of wlmtk_titlebar_set_title or until the titlebar_ptr is destroyed. |
bool wlmtk_titlebar_set_width | ( | wlmtk_titlebar_t * | titlebar_ptr, |
unsigned | width | ||
) |
Sets the width of the title bar.
titlebar_ptr | |
width |
|
static |
Default properties: All buttons shown.
|
static |
Virtual method table extension for the titlebar's element superclass.
const bs_test_case_t wlmtk_titlebar_test_cases[] |
Unit test cases.