コード例 #1
0
ファイル: Audiotheque.cpp プロジェクト: kompote/musiKOS
Audiotheque::Audiotheque() : hbox(false,2)
{
	dirpath = "/home/k/Musique";
	currentDepth = ALBUM;

	GetArtists();
	hbox.pack_start(*vbox,Gtk::PACK_SHRINK);

	add(hbox);

	hbox.show();
}
コード例 #2
0
ファイル: aboutdlgg.cpp プロジェクト: Annovae/Dolphin-Core
wxString wxAboutDialogInfo::GetDescriptionAndCredits() const
{
    wxString s = GetDescription();
    if ( !s.empty() )
        s << wxT('\n');

    if ( HasDevelopers() )
        s << wxT('\n') << _("Developed by ") << AllAsString(GetDevelopers());

    if ( HasDocWriters() )
        s << wxT('\n') << _("Documentation by ") << AllAsString(GetDocWriters());

    if ( HasArtists() )
        s << wxT('\n') << _("Graphics art by ") << AllAsString(GetArtists());

    if ( HasTranslators() )
        s << wxT('\n') << _("Translations by ") << AllAsString(GetTranslators());

    return s;
}