--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/scala/fis/base/ui/screen.scala Thu Apr 12 10:52:42 2012 +0200
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2012 Tomas Zeman <tzeman@volny.cz>
+ *
+ * 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 fis.base.ui
+
+import net.liftweb.http.LiftScreen
+import net.tz.lift.model._
+import scala.xml.{Elem, Text, UnprefixedAttribute}
+
+trait SaveButton { self: LiftScreen =>
+ override def finishButton: Elem =
+ <button class="btn btn-primary">{
+ l10n("Save")
+ }</button>
+}
+
+trait DeleteButton { self: LiftScreen =>
+ override def finishButton: Elem =
+ <button class="btn btn-primary">{
+ l10n("Delete")
+ }</button>
+}
+
+trait CancelButton { self: LiftScreen =>
+ override def cancelButton: Elem =
+ <button class="btn">{l10n("Cancel")}</button>
+}
+
+trait HorizontalScreen extends LiftScreen {
+ override def additionalAttributes = new UnprefixedAttribute("class",
+ Text("form-horizontal"), super.additionalAttributes)
+}
+
+// vim: set ts=2 sw=2 et: