mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-16 15:11:25 +00:00
85 lines
2.7 KiB
Java
85 lines
2.7 KiB
Java
/*
|
|
* Copyright (C) 2007 Esmertec AG.
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.dom.smil;
|
|
|
|
import org.w3c.dom.DOMException;
|
|
import org.w3c.dom.smil.SMILRootLayoutElement;
|
|
|
|
public class SmilRootLayoutElementImpl extends SmilElementImpl implements
|
|
SMILRootLayoutElement {
|
|
|
|
private static final String WIDTH_ATTRIBUTE_NAME = "width";
|
|
private static final String HEIGHT_ATTRIBUTE_NAME = "height";
|
|
private static final String BACKGROUND_COLOR_ATTRIBUTE_NAME = "backgroundColor";
|
|
private static final String TITLE_ATTRIBUTE_NAME = "title";
|
|
|
|
SmilRootLayoutElementImpl(SmilDocumentImpl owner, String tagName) {
|
|
super(owner, tagName);
|
|
}
|
|
|
|
public String getBackgroundColor() {
|
|
return this.getAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME);
|
|
}
|
|
|
|
public int getHeight() {
|
|
String heightString = this.getAttribute(HEIGHT_ATTRIBUTE_NAME);
|
|
return parseAbsoluteLength(heightString);
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.getAttribute(TITLE_ATTRIBUTE_NAME);
|
|
}
|
|
|
|
public int getWidth() {
|
|
String widthString = this.getAttribute(WIDTH_ATTRIBUTE_NAME);
|
|
return parseAbsoluteLength(widthString);
|
|
}
|
|
|
|
public void setBackgroundColor(String backgroundColor) throws DOMException {
|
|
this.setAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME, backgroundColor);
|
|
}
|
|
|
|
public void setHeight(int height) throws DOMException {
|
|
this.setAttribute(HEIGHT_ATTRIBUTE_NAME, String.valueOf(height) + "px");
|
|
|
|
}
|
|
|
|
public void setTitle(String title) throws DOMException {
|
|
this.setAttribute(TITLE_ATTRIBUTE_NAME, title);
|
|
}
|
|
|
|
public void setWidth(int width) throws DOMException {
|
|
this.setAttribute(WIDTH_ATTRIBUTE_NAME, String.valueOf(width) + "px");
|
|
}
|
|
|
|
/*
|
|
* Internal Interface
|
|
*/
|
|
|
|
private int parseAbsoluteLength(String length) {
|
|
if (length.endsWith("px")) {
|
|
length = length.substring(0, length.indexOf("px"));
|
|
}
|
|
try {
|
|
return Integer.parseInt(length);
|
|
} catch (NumberFormatException e) {
|
|
return 0;
|
|
}
|
|
}
|
|
}
|