/**
 * Copyright (c) 2024 Huawei Device Co., Ltd.
 * 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
 *
 *     http://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.
 */

/**
 * Common style config
 */
export class CommonStyle {
  public constructor() {}

  /**
   * Margin top of top text title
   */
  public marginTopOfTopText: number = 0;

  /**
   * Margin bottom of top text title
   */
  public marginBottomOfTopText: number = 0;

  /**
   * Width of clock view
   */
  public widthOfClock: number = 0;

  /**
   * Height of clock view
   */
  public heightOfClock: number = 0;

  /**
   * Margin bottom of top text note
   */
  public marginBottomOfBottomText: number = 0;

  /**
   * Application item width
   */
  public appItemWidth: number = 0;

  /**
   * Application item height
   */
  public appItemHeight: number = 0;

  /**
   * Application item of left and right
   */
  public appItemPadding: number = 0;

  /**
   * Application name width
   */
  public appNameWidth: number = 104;

  /**
   * Application grid gutter in x-axis
   */
  public appGridGutterX: number = 0;

  /**
   * Application grid gutter in y-axis
   */
  public appGridGutterY: number = 0;

  /**
   * Application grid width
   */
  public appGridWidth: number = 0;

  /**
   * Application grid height
   */
  public appGridHeight: number = 0;

  /**
   * Application item margin of top and right
   */
  public appItemMargin: number = 4;
}