How to open Firefox 3.6.13 without titlebar - c++

I need to remove the Titlebar in Firefox 3.6.13 window. I googled and found this link: http://www.mozilla.org/unix/customizing.html
I realized removing the Title Bar is possible by changing the file userChrome.css in this Path :
/home/../.mozilla/firefox/../chrome/userChrome.css
but I could not find the syntax to write in userChrome.css. How I can solve it ?

NOTE: This answer was provided prior to it being known that the question was about Firefox 3.6.13 (mentioned for the first time in the comments to this answer). After that comment was made, I edited the question and title to include that significant piece of information. This answer has been left here in case someone looking for the information for current versions of Firefox happens to land on this page as the result of a search.
For the last few/several versions of Firefox (from Firefox 29.0), the "Title Bar" has been hidden by default.
You can hide/unhide the "Title Bar" from the customization dialog which can be reached by clicking on the icon on the far right of the toolbar containing the urlbar. This icon, by default, looks like 3 horizontal lines. You will then need to click "Customize" (bottom left of popup). The button to display/hide the "Title Bar" is on the bottom left of the window which will be displayed within the browser upon hitting customize.
You can also directly change the option to show the "Title Bar". In about:config (enter about:config in the urlbar) you can change the state of browser.tabs.drawInTitlebar.

Related

I clicked on properties for the image, and added alt text when I click ok the image disappears and on save its come back in Sitecore

I was updating the alt text in a Sitecore item. I clicked on properties of the image, and added 'alt' text when I click ok the image disappears and on save its coming back again.
As a developer I don't want marketers guys to see such absurd behave. Help !
I checked my templates and media library, things are looking fine over there.

Sitecore Remove Button

I have a "Slide Show" control and I'd like to remove the first "X" button in the tool bar of the control. I have checked .ascx and .ascx.cs file to see if there is any related code, but nothing.
I think these buttons are from Core DB and I don't know where I can remove or hide this "X" button in Sitecore.
Could you help me, please?
Find Slide Show sublayout in your Sitecore tree.
Scroll to Editor Options section and remove Delete from the Page Editor Buttons field.

Changing Slots on Qt Menu Bar (with image)

this is more of a functionality question than programming question but I can't find any other idiot operators like me out there that are having the same problem as me, or haven't figured it out themselves.
I've got a good basic understanding of CLI C++ so I want to get into the Qt Framework. I'm using their tutorials to get started...
http://qt-project.org/doc/qt-5.1/qtdoc/gettingstartedqt.html#adding-menu-items
The tutorial says that all I need is to "right-click an action and select Go to slot > triggered()."
The image below shows in red circles two of the primary places I've tried right clicking. I've also tried going through the menu and looking for things but to no avail. (Question continued below picture.)
Does anyone know what I am doing wrong here or am I reading this wrong? Thanks in advance.
FYI the open button and save button under central widget is for the Open and Save buttons I added, NOT for the menu toolbar open and save functions.
Near the bottom of Qt Creator find the tabs "Action Editor" and "Signals & Slots Editor". Click the "Action Editor" tab to show a list of all the actions in your UI. You should be able to right-click these items and select "Go to slot...".

has uitabbarcontroller changed in xcode 4

I recently upgraded to xcode 4. My application utilizes tabbarcontroller. In old xcode 3.x, you were able to change the tabs to different types per this screenshot:
From what I gather in researching this issue, xcode 4 no longer offers this functionality. Am I missing something? From what I researched we are now suppose to delete/add tabs then change attributes to get the desired effect. So, to that end in xcode 4, I've added a new tab item and made the class a UINavigationController fully expecting the ability to toggle the "Shows Navigation Bar" with a checkbox. But, the "Navigation Controller" grouping never appears. What am I missing?
Thanks for your help.
I was surprised at first too and I was about to ask the same question. But, when you open the Object Library, in the bottom you can see a big star, "Tab Bar Item". Just drag that to the tab bar and you will notice a new item added to the tab bar controller.
Weird but works!
Just drag drop View Controller onto tabs!
Thanks
I played with xcode 4 a little bit more and discovered you can drag Navigation Controller from library onto your UITabBarController and it will create your tab item for you and set it up as a NavigationController. Pretty cool. Hopefully this will help others.

Adding buttons for HTML elements to the Sitecore rich text editor

I would like to add a button to the Sitecore rich text editor toolbar, specifically one that inserts the H2 element.
I know the H2 element can be inserted using the paragraph styles pulldown menu, but all my editors are now using the bold button for their headings because they don't "see" the paragraph styles pulldown. So, I want to make the H2 easily available using a toolbar button. (And maybe even removing the bold buttons, since it's not semantic at all.)
But no matter how I go through the documentation, I cannot find a good explanation on how to do this.
In addition to the guide Yan posted, here's another guide.
I found a couple of walkthroughs for this...
Sitecore v6.3 and previous: link
Sitecore v6.4: link
Make sure that you select the core database (bottom right of Sitecore desktop) so that you can see the /sitecore/system/Settings/Html Editor Profiles area.
In my article here the first step of wiring up an event to a button is in javascript. From there you can insert text or tags. You can also get the selected text and wrap it in tags. You don't need to compile anything I was just showing how you would if you needed to, but you can entirely cut that piece out and just use the editor to send whatever text you want back to the wysiwyg editor.